InkEdit.Recognition 事件
發生於 InkEdit 控制項取得辨識結果時。
命名空間: Microsoft.Ink
組件: Microsoft.Ink (在 Microsoft.Ink.dll 中)
語法
'宣告
Public Event Recognition As InkEditRecognitionEventHandler
'用途
Dim instance As InkEdit
Dim handler As InkEditRecognitionEventHandler
AddHandler instance.Recognition, handler
public event InkEditRecognitionEventHandler Recognition
public:
event InkEditRecognitionEventHandler^ Recognition {
void add (InkEditRecognitionEventHandler^ value);
void remove (InkEditRecognitionEventHandler^ value);
}
/** @event */
public void add_Recognition (InkEditRecognitionEventHandler value)
/** @event */
public void remove_Recognition (InkEditRecognitionEventHandler value)
JScript 不支援事件。
備註
事件處理常式會收到 InkEditRecognitionEventArgs 型別的引數,其中包含這個事件的相關資料。
在建立 InkEditRecognitionEventHandler 委派時,您會識別處理事件的方法。若要使事件與您的事件處理常式產生關聯,請將委派的執行個體加入至事件。除非您移除委派,否則每當事件發生時就會呼叫事件處理常式。
InkEdit 控制項可透過下列兩種方法的其中一種來取得辨識結果:
透過呼叫 InkEdit.Recognize 方法,以手動方式取得。
在辨識逾時引發之後,自動取得。
範例
在這個範例中,會使用 Recognition 事件以保存 RecognitionResult 物件。首先,藉由呼叫 SetResultOnStrokes 方法,將 RecognitionResult 物件附加至相關聯的 Strokes 集合。接著將 Strokes 加入至相關聯 Ink 物件的 CustomStrokes 屬性。
Private Sub mInkEdit_Recognition(ByVal sender As Object, ByVal e As InkEditRecognitionEventArgs)
Dim R As RecognitionResult = e.RecognitionResult
R.SetResultOnStrokes()
' add these strokes to custom strokes collection
' using R.Strokes(0).Id as the name
R.Strokes.Ink.CustomStrokes.Add(R.Strokes(0).Id.ToString(), R.Strokes)
End Sub
private void mInkEdit_Recognition(object sender, InkEditRecognitionEventArgs e)
{
RecognitionResult R = e.RecognitionResult;
R.SetResultOnStrokes();
// add these strokes to custom strokes collection
// using R.Strokes[0].Id as the name
R.Strokes.Ink.CustomStrokes.Add(R.Strokes[0].Id.ToString(), R.Strokes);
}
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求。
版本資訊
.NET Framework
支援版本:3.0