DocumentListEventArgs.Path 属性

获取或设置在 DocumentList 控件中删除或选中的文件的路径。

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

语法

声明
Public ReadOnly Property Path As String
用法
Dim instance As DocumentListEventArgs
Dim value As String

value = instance.Path
public string Path { get; }
public:
property String^ Path {
    String^ get ();
}
public function get Path () : String

属性值

类型:System.String

该文件的路径。默认值为空字符串 ("")。

备注

您可以使用此属性来关闭打开的文件的任何实例以响应 DeletingDocument 事件,并可打开文件以响应 DocumentActivated 事件。

示例

下面的代码示例定义了处理 DeletingDocument 事件的方法。它使用 DocumentListEventArgs 的 Path 属性来获取删除的文件的路径。此代码示例摘自一个为 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

另请参见

参考

DocumentListEventArgs 类

DocumentListEventArgs 成员

Microsoft.WindowsCE.Forms 命名空间