DocumentList.DeletingDocument 事件

DocumentList 控件中删除文件时发生。

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

语法

声明
Public Event DeletingDocument As DocumentListEventHandler
用法
Dim instance As DocumentList
Dim handler As DocumentListEventHandler

AddHandler instance.DeletingDocument, handler
public event DocumentListEventHandler DeletingDocument
public:
 event DocumentListEventHandler^ DeletingDocument {
    void add (DocumentListEventHandler^ value);
    void remove (DocumentListEventHandler^ value);
}
JScript 不支持事件。

备注

DocumentList 控件在删除文件时引发该事件,这样您就可以在需要时关闭该文件。使用 Path 属性获取该文件的路径。

有关处理事件的更多信息,请参见 使用事件

示例

下面的代码示例演示处理 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 命名空间