DocumentList.OnDocumentActivated 方法
引发 DocumentActivated 事件。
命名空间: Microsoft.WindowsCE.Forms
程序集: Microsoft.WindowsCE.Forms(在 Microsoft.WindowsCE.Forms.dll 中)
语法
声明
Protected Overridable Sub OnDocumentActivated ( _
e As DocumentListEventArgs _
)
用法
Dim e As DocumentListEventArgs
Me.OnDocumentActivated(e)
protected virtual void OnDocumentActivated(
DocumentListEventArgs e
)
protected:
virtual void OnDocumentActivated(
DocumentListEventArgs^ e
)
protected function OnDocumentActivated(
e : DocumentListEventArgs
)
参数
备注
当使用 DocumentList 控件打开文件时,会引发 DocumentActivated 事件。
引发事件时会通过委托调用事件处理程序。有关更多信息,请参见 引发事件。
OnDocumentActivated 方法还允许派生类对事件进行处理而不必附加委托。这是在派生类中处理事件的首选技术。
对继承者的说明:
在派生类中重写 OnDocumentActivated 时,一定要调用基类的 OnDocumentActivated 方法,以便注册的委托接收该事件。
示例
下面的代码示例演示处理 DocumentActivated 事件的方法。此代码示例摘自一个为 DocumentList 类提供的更大的示例。
' Handle the DocumentedActivated
' event with code to open the file.
Private Sub DocList_DocumentActivated(ByVal sender As Object, _
ByVal docevent As Microsoft.WindowsCE.Forms.DocumentListEventArgs) Handles DocumentList1.DocumentActivated
StatusBar1.Text = "Activated: " & docevent.Path
' Add code to open the selected file.
End Sub
private void OnDocActivated(object obj, DocumentListEventArgs docg)
{
statusBar1.Text = "Activated: " + docg.Path;
// Add code to open the selected file.
}
权限
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
平台
Windows Mobile for Pocket PC
.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。
版本信息
.NET Compact Framework
受以下版本支持:3.5、2.0