MenuItem.ShowShortcut-Eigenschaft
Ruft einen Wert ab, der angibt, ob die dem Menüelement zugeordnete Tastenkombination neben der Beschriftung des Menüelements angezeigt wird, oder legt diesen fest.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)
Syntax
'Declaration
<LocalizableAttribute(True)> _
Public Property ShowShortcut As Boolean
'Usage
Dim instance As MenuItem
Dim value As Boolean
value = instance.ShowShortcut
instance.ShowShortcut = value
[LocalizableAttribute(true)]
public bool ShowShortcut { get; set; }
[LocalizableAttribute(true)]
public:
property bool ShowShortcut {
bool get ();
void set (bool value);
}
/** @property */
public boolean get_ShowShortcut ()
/** @property */
public void set_ShowShortcut (boolean value)
public function get ShowShortcut () : boolean
public function set ShowShortcut (value : boolean)
Eigenschaftenwert
true, wenn die Tastenkombination neben der Beschriftung des Menüelements angezeigt wird. false, wenn die Tastenkombination nicht angezeigt werden soll. Der Standardwert ist true.
Hinweise
Mithilfe dieser Eigenschaft können Sie die Option bereitstellen, Tastenkombinationen in Menüs auszublenden, um in diesen Platz freizugeben, oder Tastenkombination nicht anzeigen zu lassen.
Beispiel
Im folgenden Codebeispiel werden ein Menüelement erstellt, die Beschriftung festgelegt, eine Tastenkombination zugewiesen, das Menüelement sichtbar gemacht und die Tastenkombination für das Menüelement angezeigt. Bei diesem Beispiel ist es erforderlich, dass zuvor ein MenuItem mit dem Namen menuItem1
erstellt wurde.
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
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 void SetupMyMenuItem()
{
// Set the caption for the menu item.
menuItem1.set_Text("&New");
// Assign a shortcut key.
menuItem1.set_Shortcut(Shortcut.CtrlN);
// Make the menu item visible.
menuItem1.set_Visible(true);
// Display the shortcut key combination.
menuItem1.set_ShowShortcut(true);
} //SetupMyMenuItem
Plattformen
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
Siehe auch
Referenz
MenuItem-Klasse
MenuItem-Member
System.Windows.Forms-Namespace
MenuItem.Shortcut-Eigenschaft