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
注解
快捷键为用户在菜单系统中激活常用菜单项提供了一种方法,并为那些无权访问鼠标或其他指针设备的用户提供对应用程序的键盘访问权限。