MenuItem.Shortcut 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出與功能表項目相關的快速鍵。
public:
property System::Windows::Forms::Shortcut Shortcut { System::Windows::Forms::Shortcut get(); void set(System::Windows::Forms::Shortcut value); };
public System.Windows.Forms.Shortcut Shortcut { get; set; }
member this.Shortcut : System.Windows.Forms.Shortcut with get, set
Public Property Shortcut As Shortcut
屬性值
其中一個 Shortcut 值。 預設為 Shortcut.None
。
例外狀況
指派的值不是其中一個 Shortcut 值。
範例
下列程式碼範例會建立功能表項目、設定標題、指派快速鍵、讓功能表項目可見,並顯示功能表項目的快速鍵顯示。 此範例要求 MenuItem 已建立名為 menuItem1
的 。
public:
void SetupMyMenuItem()
{
// Set the caption for the menu item.
menuItem1->Text = "&New";
// Assign a shortcut key.
menuItem1->Shortcut = Shortcut::CtrlN;
// Make the menu item visible.
menuItem1->Visible = true;
// Display the shortcut key combination.
menuItem1->ShowShortcut = true;
}
public void SetupMyMenuItem()
{
// Set the caption for the menu item.
menuItem1.Text = "&New";
// Assign a shortcut key.
menuItem1.Shortcut = Shortcut.CtrlN;
// Make the menu item visible.
menuItem1.Visible = true;
// Display the shortcut key combination.
menuItem1.ShowShortcut = true;
}
Public Sub SetupMyMenuItem()
' Set the caption for the menu item.
menuItem1.Text = "&New"
' Assign a shortcut key.
menuItem1.Shortcut = Shortcut.CtrlN
' Make the menu item visible.
menuItem1.Visible = True
' Display the shortcut key combination.
menuItem1.ShowShortcut = True
End Sub
備註
快速鍵可讓使用者啟用功能表系統中常用功能表項目的方法,並為沒有滑鼠或其他指標裝置存取權的使用者提供應用程式的鍵盤存取權。