Evento InkAnalyzer.ReadyToReconcile
Aggiornamento: novembre 2007
Si verifica quando l'analizzatore dell'input penna è pronto per risolvere le differenze dei risultati dell'analisi in background con lo stato corrente dell'analizzatore.
Spazio dei nomi: Microsoft.Ink
Assembly: Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.dll)
Sintassi
'Dichiarazione
Public Event ReadyToReconcile As ReadyToReconcileEventHandler
'Utilizzo
Dim instance As InkAnalyzer
Dim handler As ReadyToReconcileEventHandler
AddHandler instance.ReadyToReconcile, handler
public event ReadyToReconcileEventHandler ReadyToReconcile
public:
event ReadyToReconcileEventHandler^ ReadyToReconcile {
void add (ReadyToReconcileEventHandler^ value);
void remove (ReadyToReconcileEventHandler^ value);
}
/** @event */
public void add_ReadyToReconcile (ReadyToReconcileEventHandler value)
/** @event */
public void remove_ReadyToReconcile (ReadyToReconcileEventHandler value)
JScript non supporta gli eventi.
Note
L'oggetto InkAnalyzer esegue la risoluzione delle differenze automatica quando la proprietà AnalysisModes ha il flag AnalysisModes impostato su AutomaticReconciliationEnabled. Quando il flag AutomaticReconciliationEnabled non è impostato, l'applicazione deve risolvere manualmente le differenze dei risultati dell'analisi in background.
Per gestire la risoluzione manuale delle differenze, attenersi alla seguente procedura.
Cancellare il flag AutomaticReconciliationEnabled nella proprietà AnalysisModes dell'oggetto InkAnalyzer.
Aggiungere un gestore eventi per l'evento ReadyToReconcile.
Per risolvere le differenze dei risultati dell'analisi, chiamare il metodo Reconcile dal gestore eventi per l'evento ReadyToReconcile. Per annullare l'operazione di analisi in background corrente, chiamare il metodo Abort dal gestore eventi per l'evento ReadyToReconcile.
L'analizzatore dell'input penna genera questo evento prima di generare l'evento InkAnalyzerStateChanging.
Per ulteriori informazioni sulla sincronizzazione dei dati applicazioni con InkAnalyzer, vedere Data Proxy with Ink Analysis.
L'analizzatore dell'input penna genera questo evento durante l'analisi in background.
Esempi
Nell'esempio seguente viene definito un metodo, theInkAnalyzer_ReadyToReconcile, che gestisce l'evento ReadyToReconcile di un oggetto InkAnalyzer. Se viene impostato il valore booleano abortAnalysis, theInkAnalyzerBase_ReadyToReconcile interrompe l'operazione di analisi. In caso contrario, esegue la risoluzione manuale delle differenze e continua con l'operazione di analisi.
''' <summary>
''' Handles the StrokeReparentedBase event of an InkAnalyzerBase.
''' </summary>
''' <param name="sender">The source of the event.</param>
''' <param name="e">The event data.</param>
Sub theInkAnalyzer_ReadyToReconcile( _
ByVal sender As Object, _
ByVal e As EventArgs)
' The source is an InkAnalyzerBase.
Dim theInkAnalyzerBase As Microsoft.Ink.InkAnalyzer = _
DirectCast(sender, Microsoft.Ink.InkAnalyzer)
' Check whether or not to abort analysis before continuing.
If Me.abortAnalysis Then
' Abort analysis and update the analyzer's dirty region.
Dim unanalyzedRegion As Microsoft.Ink.AnalysisRegion = _
theInkAnalyzerBase.Abort()
theInkAnalyzerBase.DirtyRegion.Union(unanalyzedRegion)
Else
' Manually reconcile the analysis results for this analysis phase.
theInkAnalyzerBase.Reconcile()
End If
End Sub 'theInkAnalyzer_ReadyToReconcile
/// <summary>
/// Handles the ReadyToReconcile event of an InkAnalyzerBase.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The event data.</param>
void theInkAnalyzer_ReadyToReconcile(object sender, EventArgs e)
{
// The source is an InkAnalyzer.
Microsoft.Ink.InkAnalyzer theInkAnalyzerBase =
sender as Microsoft.Ink.InkAnalyzer;
// Check whether or not to abort analysis before continuing.
if (this.abortAnalysis)
{
// Abort analysis and update the analyzer's dirty region.
Microsoft.Ink.AnalysisRegion unanalyzedRegion =
theInkAnalyzerBase.Abort();
theInkAnalyzerBase.DirtyRegion.Union(unanalyzedRegion);
}
else
{
// Manually reconcile the analysis results for this analysis phase.
theInkAnalyzerBase.Reconcile();
}
}
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