Freigeben über


Control.ModifierKeys-Eigenschaft

Ruft einen Wert ab, der angibt, welche der Modifizierertasten (UMSCHALT, STRG und/oder ALT) gerade gedrückt wird.

Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)

Syntax

'Declaration
Public Shared ReadOnly Property ModifierKeys As Keys
'Usage
Dim value As Keys

value = Control.ModifierKeys
public static Keys ModifierKeys { get; }
public:
static property Keys ModifierKeys {
    Keys get ();
}
/** @property */
public static Keys get_ModifierKeys ()
public static function get ModifierKeys () : Keys

Eigenschaftenwert

Eine bitweise Kombination der Keys-Werte. Der Standardwert ist None.

Beispiel

Im folgenden Codebeispiel wird eine Schaltfläche ausgeblendet, wenn beim Klicken auf die Schaltfläche gleichzeitig STRG gedrückt wird. In diesem Beispiel muss in einem Form ein Button mit der Bezeichnung button1 vorhanden sein.

Private Sub button1_Click(sender As Object, _
  e As EventArgs) Handles button1.Click
   ' If the CTRL key is pressed when the 
   ' control is clicked, hide the control. 
   If Control.ModifierKeys = Keys.Control Then
      CType(sender, Control).Hide()
   End If
End Sub
private void button1_Click(object sender, System.EventArgs e)
{
   /* If the CTRL key is pressed when the 
      * control is clicked, hide the control. */
   if(Control.ModifierKeys == Keys.Control)
   {
      ((Control)sender).Hide();
   }
}
private:
   void button1_Click( Object^ sender, System::EventArgs^ /*e*/ )
   {
      /* If the CTRL key is pressed when the
         * control is clicked, hide the control. */
      if ( Control::ModifierKeys == Keys::Control )
      {
         (dynamic_cast<Control^>(sender))->Hide();
      }
   }
private void button1_Click(Object sender, System.EventArgs e)
{
    /* If the CTRL key is pressed when the 
       control is clicked, hide the control. 
     */
    if (Control.get_ModifierKeys().Equals(Keys.Control)) {
        ((Control)sender).Hide();
    }
} //button1_Click

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

Control-Klasse
Control-Member
System.Windows.Forms-Namespace
Keys