DispatcherTimer Costruttori
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Inizializza una nuova istanza della classe DispatcherTimer.
Overload
DispatcherTimer() |
Inizializza una nuova istanza della classe DispatcherTimer. |
DispatcherTimer(DispatcherPriority) |
Inizializza una nuova istanza della classe DispatcherTimer che elabora gli eventi del timer con la priorità specificata. |
DispatcherTimer(DispatcherPriority, Dispatcher) |
Inizializza una nuova istanza della classe DispatcherTimer che viene eseguita sull'oggetto Dispatcher specificato con la priorità indicata. |
DispatcherTimer(TimeSpan, DispatcherPriority, EventHandler, Dispatcher) |
Inizializza una nuova istanza della classe DispatcherTimer che utilizza l'intervallo di tempo, la priorità, il gestore eventi e l'oggetto Dispatcher specificati. |
DispatcherTimer()
Inizializza una nuova istanza della classe DispatcherTimer.
public:
DispatcherTimer();
public DispatcherTimer ();
Public Sub New ()
Commenti
DispatcherTimer viene eseguito sull'oggetto Dispatcher del thread corrente con Background priorità. Per specificare un valore diverso Dispatcher, usare il costruttore seguente: DispatcherTimer.DispatcherTimer(DispatcherPriority, Dispatcher).
Si applica a
DispatcherTimer(DispatcherPriority)
Inizializza una nuova istanza della classe DispatcherTimer che elabora gli eventi del timer con la priorità specificata.
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)
Parametri
- priority
- DispatcherPriority
Priorità con cui richiamare il timer.
Commenti
DispatcherTimer viene eseguito sull'oggetto Dispatcher del thread corrente. Per specificare un valore diverso Dispatcher, usare il costruttore seguente: DispatcherTimer(DispatcherPriority, Dispatcher).
Si applica a
DispatcherTimer(DispatcherPriority, Dispatcher)
Inizializza una nuova istanza della classe DispatcherTimer che viene eseguita sull'oggetto Dispatcher specificato con la priorità indicata.
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)
Parametri
- priority
- DispatcherPriority
Priorità con cui richiamare il timer.
- dispatcher
- Dispatcher
Dispatcher cui è associato il timer.
Eccezioni
dispatcher
è null
.
Si applica a
DispatcherTimer(TimeSpan, DispatcherPriority, EventHandler, Dispatcher)
Inizializza una nuova istanza della classe DispatcherTimer che utilizza l'intervallo di tempo, la priorità, il gestore eventi e l'oggetto Dispatcher specificati.
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)
Parametri
- interval
- TimeSpan
Periodo tra unità di tempo.
- priority
- DispatcherPriority
Priorità con cui richiamare il timer.
- callback
- EventHandler
Gestore eventi da chiamare quando si verifica l'evento Tick.
- dispatcher
- Dispatcher
Dispatcher cui è associato il timer.
Eccezioni
interval
è minore di 0 o maggiore di Int32.MaxValue.