DispatcherTimer.IsEnabled 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个指示是否正在运行计时器的值。
public:
property bool IsEnabled { bool get(); void set(bool value); };
public bool IsEnabled { get; set; }
member this.IsEnabled : bool with get, set
Public Property IsEnabled As Boolean
属性值
如果计时器处于启用状态,则为 true
;否则为 false
。 默认值为 false
。
示例
以下示例创建了一个 DispatcherTimer。 将创建名为 dispatcherTimer
的新DispatcherTimer对象。 事件处理程序 dispatcherTimer_Tick
将添加到 事件中 Tick 。
Interval使用 TimeSpan 对象将 设置为 1 秒。
// DispatcherTimer setup
dispatcherTimer = new System.Windows.Threading.DispatcherTimer();
dispatcherTimer.Tick += new EventHandler(dispatcherTimer_Tick);
dispatcherTimer.Interval = TimeSpan.FromSeconds(1);
dispatcherTimer.Start();
' DispatcherTimer setup
dispatcherTimer = New Threading.DispatcherTimer()
AddHandler dispatcherTimer.Tick, AddressOf dispatcherTimer_Tick
dispatcherTimer.Interval = New TimeSpan(0,0,1)
dispatcherTimer.Start()
注解
IsEnabled 必须设置为 true
,才能 Tick 引发事件。
调用 Start 将 设置为 true
IsEnabled 。
调用 Stop 将 设置为 false
IsEnabled 。