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