Costruttore InkAnalyzer (Dispatcher)
Aggiornamento: novembre 2007
Inizializza una nuova istanza della classe InkAnalyzer con uno specifico oggetto Dispatcher. Questo oggetto viene utilizzato per sincronizzare gli eventi dell'analisi in background.
Spazio dei nomi: System.Windows.Ink
Assembly: IAWinFX (in IAWinFX.dll)
Sintassi
'Dichiarazione
Public Sub New ( _
synchronizingObject As Dispatcher _
)
'Utilizzo
Dim synchronizingObject As Dispatcher
Dim instance As New InkAnalyzer(synchronizingObject)
public InkAnalyzer(
Dispatcher synchronizingObject
)
public:
InkAnalyzer(
Dispatcher^ synchronizingObject
)
public InkAnalyzer(
Dispatcher synchronizingObject
)
public function InkAnalyzer(
synchronizingObject : Dispatcher
)
Parametri
- synchronizingObject
Tipo: System.Windows.Threading.Dispatcher
Oggetto che definisce il thread nel quale vengono generati gli eventi dell'analisi in background di InkAnalyzer.
Esempi
Nell'esempio seguente viene creato un nuovo oggetto InkAnalyzer e il gestore per l'evento StrokesChanged viene associato alla proprietà Strokes nell'oggetto InkCanvas denominato theInkCanvas.
theInkAnalyzer = New InkAnalyzer()
AddHandler theInkCanvas.Strokes.StrokesChanged, AddressOf Strokes_StrokesChanged
theInkAnalyzer = new InkAnalyzer();
theInkCanvas.Strokes.StrokesChanged +=
new StrokeCollectionChangedEventHandler(Strokes_StrokesChanged);
Nell'esempio seguente viene definito il gestore eventi Strokes_StrokesChanged che aggiunge i tratti a theInkAnalyzer, se erano già stati aggiunti a theInkCanvas e rimuove i tratti da theInkAnalyzer, se erano già stati rimossi da theInkCanvas.
' This event occurs whenever a stroke is added, removed, or partially erased
' from the InkCanvas.
Sub Strokes_StrokesChanged(ByVal sender As Object, ByVal e As StrokeCollectionChangedEventArgs)
If e.Added.Count > 0 Then
theInkAnalyzer.AddStrokes(e.Added)
End If
If e.Removed.Count > 0 Then
theInkAnalyzer.RemoveStrokes(e.Removed)
End If
End Sub 'Strokes_StrokesChanged
// This event occurs whenever a stroke is added, removed, or partially erased
// from the InkCanvas.
void Strokes_StrokesChanged(object sender, StrokeCollectionChangedEventArgs e)
{
if (e.Added.Count > 0)
{
theInkAnalyzer.AddStrokes(e.Added);
}
if (e.Removed.Count > 0)
{
theInkAnalyzer.RemoveStrokes(e.Removed);
}
}
Piattaforme
Windows Vista
.NET Framework e .NET Compact Framework non supportano tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.
Informazioni sulla versione
.NET Framework
Supportato in: 3.0
Vedere anche
Riferimenti
Spazio dei nomi System.Windows.Ink
Ink