DispatcherTimer.Start 方法

定义

启动 DispatcherTimer

public:
 void Start();
public void Start ();
member this.Start : unit -> unit
Public Sub Start ()

示例

以下示例创建了一个 DispatcherTimer。 将创建名为 dispatcherTimer 的新DispatcherTimer对象。 事件处理程序 dispatcherTimer_Tick 将添加到 事件中 TickInterval使用 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()

注解

当计时器启动时设置为 IsEnabledfalse ,将停止计时器。

true当计时器停止时设置为 IsEnabled ,将启动计时器。

StartIsEnabled 设置为 true

Start 重置计时器 Interval

适用于