共用方式為


DocumentList.DocumentActivated 事件

DocumentList 控制項中選取檔案時發生。

命名空間:  Microsoft.WindowsCE.Forms
組件:  Microsoft.WindowsCE.Forms (在 Microsoft.WindowsCE.Forms.dll 中)

語法

'宣告
Public Event DocumentActivated As DocumentListEventHandler
'用途
Dim instance As DocumentList
Dim handler As DocumentListEventHandler

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

備註

可處理此事件來開啟選取的檔案。使用 Path 屬性以取得檔案的路徑。

使用者啟動與 DocumentList 控制項關聯的快速鍵功能表時,並不會發生此事件。

如需處理事件的詳細資訊,請參閱使用事件

範例

下列程式碼範例示範處理 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

請參閱

參考

DocumentList 類別

DocumentList 成員

Microsoft.WindowsCE.Forms 命名空間