DynamicRenderer.GetDispatcher Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Devuelve un objeto Dispatcher para el subproceso de representación.
protected:
System::Windows::Threading::Dispatcher ^ GetDispatcher();
protected System.Windows.Threading.Dispatcher GetDispatcher ();
member this.GetDispatcher : unit -> System.Windows.Threading.Dispatcher
Protected Function GetDispatcher () As Dispatcher
Devoluciones
Dispatcher para el subproceso de representación.
Ejemplos
En el ejemplo siguiente se muestra cómo usar el GetDispatcher método para realizar algún trabajo en el subproceso de representación.
delegate void WorkerMethod();
class CustomDynamicRenderer : DynamicRenderer
{
protected override void OnStylusDown(RawStylusInput rawStylusInput)
{
base.OnStylusDown(rawStylusInput);
rawStylusInput.NotifyWhenProcessed(null);
}
protected override void OnStylusDownProcessed(object callbackData, bool targetVerified)
{
base.OnStylusDownProcessed(callbackData, targetVerified);
Dispatcher renderingThreadDispatcher = this.GetDispatcher();
renderingThreadDispatcher.BeginInvoke(DispatcherPriority.Normal, new WorkerMethod(DoSomething));
}
private void DoSomething()
{
// Perform work on the rendering thread.
}
}
Delegate Sub WorkerMethod()
Class CustomDynamicRenderer
Inherits DynamicRenderer
Protected Overrides Sub OnStylusDown(ByVal rawStylusInput As RawStylusInput)
MyBase.OnStylusDown(rawStylusInput)
rawStylusInput.NotifyWhenProcessed(Nothing)
End Sub
Protected Overrides Sub OnStylusDownProcessed(ByVal callbackData As Object, ByVal targetVerified As Boolean)
MyBase.OnStylusDownProcessed(callbackData, targetVerified)
Dim renderingThreadDispatcher As Dispatcher = Me.GetDispatcher()
renderingThreadDispatcher.BeginInvoke(DispatcherPriority.Normal, New WorkerMethod(AddressOf DoSomething))
End Sub
Private Sub DoSomething()
' Perform work on the rendering thread.
End Sub
End Class