MenuItem.ShowShortcut 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,通过该值指示与菜单项关联的快捷键是否在菜单项标题的旁边显示。
public:
property bool ShowShortcut { bool get(); void set(bool value); };
public bool ShowShortcut { get; set; }
member this.ShowShortcut : bool with get, set
Public Property ShowShortcut As Boolean
属性值
如果快捷组合键在菜单项标题的旁边显示,则为 true
;如果不显示快捷组合键,则为 false
。 默认值为 true
。
示例
下面的代码示例创建一个菜单项,设置标题,分配快捷键,使菜单项可见,并显示菜单项的快捷键显示。 该示例要求 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
注解
可以使用此属性为用户提供用于隐藏菜单快捷方式的选项,以节省菜单空间或隐藏要显示的快捷键。