DocumentList.OnDeletingDocument 方法

引发 DeletingDocument 事件。

命名空间:  Microsoft.WindowsCE.Forms
程序集:  Microsoft.WindowsCE.Forms(在 Microsoft.WindowsCE.Forms.dll 中)

语法

声明
Protected Overridable Sub OnDeletingDocument ( _
    e As DocumentListEventArgs _
)
用法
Dim e As DocumentListEventArgs

Me.OnDeletingDocument(e)
protected virtual void OnDeletingDocument(
    DocumentListEventArgs e
)
protected:
virtual void OnDeletingDocument(
    DocumentListEventArgs^ e
)
protected function OnDeletingDocument(
    e : DocumentListEventArgs
)

参数

备注

当使用 DocumentList 控件删除文件时,会发生 DeletingDocument 事件。

引发事件时会通过委托调用事件处理程序。有关更多信息,请参见 引发事件

OnDeletingDocument 方法还允许派生类对事件进行处理而不必附加委托。这是在派生类中处理事件的首选技术。

对继承者的说明:

在派生类中重写 OnDeletingDocument 时,一定要调用基类的 OnDeletingDocument 方法,以便注册的委托接收该事件。

示例

下面的代码示例演示处理 DeletingDocument 事件的方法。此代码示例摘自一个为 DocumentList 类提供的更大的示例。

' Handle the DeletingDocument 
' event with code to close the file.
 Private Sub DocList_DeletingDocument(ByVal sender As Object, _
 ByVal docevent As Microsoft.WindowsCE.Forms.DocumentListEventArgs) _
 Handles DocumentList1.DeletingDocument

     StatusBar1.Text = "Deleted: " & docevent.Path
     ' Add code to close any instances of the file.
 End Sub
private void OnDelDoc(object obj, DocumentListEventArgs docg)
{
    statusBar1.Text += "Deleted: " + docg.Path;

    // Add code to close any instances of the file.
}

权限

平台

Windows Mobile for Pocket PC

.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求

版本信息

.NET Compact Framework

受以下版本支持:3.5、2.0

另请参见

参考

DocumentList 类

DocumentList 成员

Microsoft.WindowsCE.Forms 命名空间