Control.IsKeyLocked(Keys) Methode

Definition

Bestimmt, ob die FESTSTELLTASTE, NUM oder ROLLEN aktiviert ist.

public:
 static bool IsKeyLocked(System::Windows::Forms::Keys keyVal);
public static bool IsKeyLocked (System.Windows.Forms.Keys keyVal);
static member IsKeyLocked : System.Windows.Forms.Keys -> bool
Public Shared Function IsKeyLocked (keyVal As Keys) As Boolean

Parameter

keyVal
Keys

Der FESTSTELLTASTE-, NUM- oder ROLLEN-Member der Keys-Enumeration.

Gibt zurück

Boolean

true, wenn die angegebenen Tasten aktiviert sind, andernfalls false.

Ausnahmen

Der keyVal-Parameter verweist auf eine andere Taste als die FESTSTELLTASTE, NUM oder ROLLEN.

Beispiele

Im folgenden Codebeispiel wird ein Meldungsfeld angezeigt, das angibt, ob die angegebene Taste (die FESTSTELLTASTE in diesem Fall) wirksam ist.

#using <System.dll>
#using <System.Drawing.dll>
#using <System.Windows.Forms.dll>

using namespace System;
using namespace System::Windows::Forms;
int main()
{
   if (Control::IsKeyLocked( Keys::CapsLock )) {
      MessageBox::Show( "The Caps Lock key is ON." );
   }
   else { 
      MessageBox::Show( "The Caps Lock key is OFF." );
   }

}
using System;
using System.Windows.Forms;

public class CapsLockIndicator
{
    public static void Main()
    {
        if (Control.IsKeyLocked(Keys.CapsLock)) {
            MessageBox.Show("The Caps Lock key is ON.");
        }
        else {
            MessageBox.Show("The Caps Lock key is OFF.");
        }
    }
}

' To compile and run this sample from the command line, proceed as follows:
' vbc controliskeylocked.vb /r:System.Windows.Forms.dll /r:System.dll 
' /r:System.Data.dll /r:System.Drawing.dll

Imports System.Windows.Forms

Public Class CapsLockIndicator
   
    Public Shared Sub Main()
        if Control.IsKeyLocked(Keys.CapsLock) Then
            MessageBox.Show("The Caps Lock key is ON.")
        Else
            MessageBox.Show("The Caps Lock key is OFF.")
        End If
    End Sub
End Class

Hinweise

Verwenden Sie die IsKeyLocked Eigenschaft, um zu bestimmen, ob die FESTSTELLTASTE, ZAHLEN-, BILD- oder BILDLAUF-SPERRtasten aktiviert sind, ob einzeln oder in Kombination.

Gilt für