共用方式為


HOW TO:處理 HardwareButton 事件 (裝置)

更新:2007 年 11 月

使用 HardwareButton 控制項,覆寫 Pocket PC 中的應用程式索引鍵。

若要指派 HardwareButton 元件至特定的應用程式索引鍵

  1. 從 [工具箱] 的 [裝置元件] 索引標籤中,將 [HardwareButton] 元件拖曳至 Windows Form 或設計工具中的元件匣。

  2. 在元件匣中,以滑鼠右鍵按一下 [HardwareButton] 控制項,然後按一下快速鍵功能表上的 [屬性]。

  3. 將 [AssociatedControl] 屬性設定為表單 (例如 Form1)。

  4. 將 [HardwareKey] 屬性設定為想要覆寫的索引鍵 (例如 ApplicationKey1)。

  5. 按一下設計工具面板上的按鈕 (例如 [螢幕按鍵 1])。

    程式碼編輯器會在 Form_KeyDown 事件處理常式上開啟。

  6. 插入下列程式碼:

    if ((int) e.KeyCode == (int) Microsoft.WindowsCE.Forms.HardwareKeys.ApplicationKey1)
    {
    //TODO
    }
    

    您通常會使用 //TODO 區段啟動應用程式。

請參閱

工作

HOW TO:使用 HardwareButton 元件

概念

建立和開發 Managed 裝置專案

參考

HardwareButton