PopulateContextNodeEventHandler 委派
表示將處理 InkAnalyzer 之 PopulateContextNode 事件的方法。
命名空間: Microsoft.Ink
組件: Microsoft.Ink.Analysis (在 Microsoft.Ink.Analysis.dll 中)
語法
'宣告
Public Delegate Sub PopulateContextNodeEventHandler ( _
sender As Object, _
e As PopulateContextNodeEventArgs _
)
'用途
Dim instance As New PopulateContextNodeEventHandler(AddressOf HandlerMethod)
public delegate void PopulateContextNodeEventHandler(
Object sender,
PopulateContextNodeEventArgs e
)
public delegate void PopulateContextNodeEventHandler(
Object^ sender,
PopulateContextNodeEventArgs^ e
)
/** @delegate */
public delegate void PopulateContextNodeEventHandler(
Object sender,
PopulateContextNodeEventArgs e
)
JScript 不支援委派。
參數
- sender
型別:System.Object
事件的來源。
- e
型別:Microsoft.Ink.PopulateContextNodeEventArgs
事件資料。
備註
在建立 PopulateContextNodeEventHandler 委派 (Delegate) 時,您會識別處理事件的方法。若要使事件與您的事件處理常式產生關聯,請將委派的執行個體 (Instance) 加入至事件。除非您移除委派,否則每當事件發生時就會呼叫事件處理常式。如需事件處理常式委派的詳細資訊,請參閱事件和委派 (英文)。
範例
下列範例會定義用來處理 PopulateContextNode 事件的 PopulateContextNode 方法。事件資訊會傳遞至 theDocumentModel 文件模型物件。
這個範例並未提供文件模型的定義,也未示範處理傳入資訊的方式。
'/ <summary>
'/ Handles the InkAnalyzer.PopulateContextNode event.
'/ </summary>
'/ <param name="sender">The source of the event.</param>
'/ <param name="e">The event data.</param>
'/ <remarks>
'/ This event handler fully populates a ContextNode from the document model.
'/ The InkAnalyzer calls this event handler when it accesses a partially
'/ populated ContextNode created by the document model.
'/ </remarks>
Private Sub PopulateContextNode( _
ByVal sender As Object, _
ByVal e As Microsoft.Ink.PopulateContextNodeEventArgs)
Me.theDocumentModel.PopulateNode(e.NodeToPopulate, _
CType(sender, Microsoft.Ink.InkAnalyzer))
End Sub 'PopulateContextNode
/// <summary>
/// Handles the InkAnalyzer.PopulateContextNode event.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The event data.</param>
/// <remarks>
/// This event handler fully populates a ContextNode from the document model.
/// The InkAnalyzer calls this event handler when it accesses a partially
/// populated ContextNode created by the document model.
/// </remarks>
private void PopulateContextNode(
object sender, Microsoft.Ink.PopulateContextNodeEventArgs e)
{
this.theDocumentModel.PopulateNode(
e.NodeToPopulate, (Microsoft.Ink.InkAnalyzer)sender);
}
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求。
版本資訊
.NET Framework
支援版本:3.0