ProgressBar.IsIndeterminate 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
public:
property bool IsIndeterminate { bool get(); void set(bool value); };
bool IsIndeterminate();
void IsIndeterminate(bool value);
public bool IsIndeterminate { get; set; }
var boolean = progressBar.isIndeterminate;
progressBar.isIndeterminate = boolean;
Public Property IsIndeterminate As Boolean
<ProgressBar IsIndeterminate="bool"/>
屬性值
Boolean
bool
如果進度列以重複模式報告一般進度,則 True;如果進度列根據 Value 屬性報告進度,false。 預設值為 false 。
備註
舊版的注意事項
Windows 8.x 在針對 Windows 8 編譯的應用程式中,當 ProgressBar 不確定時,即使畫面上看不到進度動畫,仍會繼續執行進度動畫,例如當 ProgressBarVisibility 折迭時。 這可讓UI線程保持喚醒、使用資源,以及損害應用程式效能。 當看不到 ProgressBar 時,您應該將 IsIndeterminate 設定為 false來停用動畫。