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;如果进度栏根据 值 属性报告进度,则 false。 默认值为 false
注解
以前版本的说明
Windows 8.x 在为 Windows 8 编译的应用中,当 ProgressBar 不确定时,即使它在屏幕上不可见,进度动画也会继续,例如当 ProgressBarVisibility 折叠时。 这可以让 UI 线程保持唤醒、使用资源并损害应用性能。 当 ProgressBar 不可见时,应通过将 IsIndeterminate 设置为 false来禁用动画。