DispatcherTimer コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
DispatcherTimer クラスの新しいインスタンスを初期化します。
オーバーロード
DispatcherTimer() |
DispatcherTimer クラスの新しいインスタンスを初期化します。 |
DispatcherTimer(DispatcherPriority) |
指定した優先順位でタイマー イベントを処理する DispatcherTimer クラスの新しいインスタンスを初期化します。 |
DispatcherTimer(DispatcherPriority, Dispatcher) |
指定した DispatcherTimer で、指定した優先順位で実行される Dispatcher クラスの新しいインスタンスを初期化します。 |
DispatcherTimer(TimeSpan, DispatcherPriority, EventHandler, Dispatcher) |
指定した時間間隔、優先順位、イベント ハンドラー、および DispatcherTimer を使用する Dispatcher クラスの新しいインスタンスを初期化します。 |
DispatcherTimer()
DispatcherTimer クラスの新しいインスタンスを初期化します。
public:
DispatcherTimer();
public DispatcherTimer ();
Public Sub New ()
注釈
DispatcherTimer は、 Dispatcher 現在のスレッドの 上で優先順位で Background 実行されます。 別Dispatcherの を指定するには、次のコンストラクターを使用します。 DispatcherTimer.DispatcherTimer(DispatcherPriority, Dispatcher)
適用対象
DispatcherTimer(DispatcherPriority)
指定した優先順位でタイマー イベントを処理する DispatcherTimer クラスの新しいインスタンスを初期化します。
public:
DispatcherTimer(System::Windows::Threading::DispatcherPriority priority);
public DispatcherTimer (System.Windows.Threading.DispatcherPriority priority);
new System.Windows.Threading.DispatcherTimer : System.Windows.Threading.DispatcherPriority -> System.Windows.Threading.DispatcherTimer
Public Sub New (priority As DispatcherPriority)
パラメーター
- priority
- DispatcherPriority
タイマーを起動する優先順位。
注釈
DispatcherTimer は、 Dispatcher 現在のスレッドの で実行されます。 別Dispatcherの を指定するには、次のコンストラクターを使用します。 DispatcherTimer(DispatcherPriority, Dispatcher)
適用対象
DispatcherTimer(DispatcherPriority, Dispatcher)
指定した DispatcherTimer で、指定した優先順位で実行される Dispatcher クラスの新しいインスタンスを初期化します。
public:
DispatcherTimer(System::Windows::Threading::DispatcherPriority priority, System::Windows::Threading::Dispatcher ^ dispatcher);
public DispatcherTimer (System.Windows.Threading.DispatcherPriority priority, System.Windows.Threading.Dispatcher dispatcher);
new System.Windows.Threading.DispatcherTimer : System.Windows.Threading.DispatcherPriority * System.Windows.Threading.Dispatcher -> System.Windows.Threading.DispatcherTimer
Public Sub New (priority As DispatcherPriority, dispatcher As Dispatcher)
パラメーター
- priority
- DispatcherPriority
タイマーを起動する優先順位。
- dispatcher
- Dispatcher
タイマーが関連付けられているディスパッチャー。
例外
dispatcher
は null
です。
適用対象
DispatcherTimer(TimeSpan, DispatcherPriority, EventHandler, Dispatcher)
指定した時間間隔、優先順位、イベント ハンドラー、および DispatcherTimer を使用する Dispatcher クラスの新しいインスタンスを初期化します。
public:
DispatcherTimer(TimeSpan interval, System::Windows::Threading::DispatcherPriority priority, EventHandler ^ callback, System::Windows::Threading::Dispatcher ^ dispatcher);
public DispatcherTimer (TimeSpan interval, System.Windows.Threading.DispatcherPriority priority, EventHandler callback, System.Windows.Threading.Dispatcher dispatcher);
new System.Windows.Threading.DispatcherTimer : TimeSpan * System.Windows.Threading.DispatcherPriority * EventHandler * System.Windows.Threading.Dispatcher -> System.Windows.Threading.DispatcherTimer
Public Sub New (interval As TimeSpan, priority As DispatcherPriority, callback As EventHandler, dispatcher As Dispatcher)
パラメーター
- interval
- TimeSpan
タイマー刻み間の時間。
- priority
- DispatcherPriority
タイマーを起動する優先順位。
- callback
- EventHandler
Tick イベントが発生したときに呼び出すイベント ハンドラー。
- dispatcher
- Dispatcher
タイマーが関連付けられているディスパッチャー。
例外
interval
が 0 より小さいか 、Int32.MaxValue より大きい。
適用対象
.NET