ToolStripMenuItem.ShortcutKeys 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定與 ToolStripMenuItem 關聯的快速鍵。
public:
property System::Windows::Forms::Keys ShortcutKeys { System::Windows::Forms::Keys get(); void set(System::Windows::Forms::Keys value); };
public System.Windows.Forms.Keys ShortcutKeys { get; set; }
member this.ShortcutKeys : System.Windows.Forms.Keys with get, set
Public Property ShortcutKeys As Keys
屬性值
例外狀況
屬性未設定為其中一個 Keys 值。
範例
下列程式代碼範例示範如何使用 ShortcutKeys 屬性,將按鍵組合 CTRL+P 指派給名為 的 printToolStripMenuItem
功能表項。 如需完整的範例,請參閱如何:將網頁瀏覽器功能新增至 Windows Forms 應用程式。
printToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.P;
printToolStripMenuItem.ShortcutKeys = Keys.Control Or Keys.P
備註
ShortcutKeys使用 屬性將按鍵組合指派給功能表命令,例如 Copy 命令的 CTRL+C。 除了存取按鍵之外,您也可以使用快速鍵,這些按鍵是功能表或功能表項中搭配 ALT 鍵使用的底線字母。 在您要用於存取密鑰的字母前面輸入 ampersand (&) ,以在程式碼中定義存取鍵。