Control.IsKeyLocked(Keys) Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
CAPS LOCK, NUM LOCK veya SCROLL LOCK tuşunun etkin olup olmadığını belirler.
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
Parametreler
Döndürülenler
true
belirtilen anahtar veya anahtarlar etkinse; aksi takdirde , false
.
Özel durumlar
keyVal
parametresi CAPS LOCK, NUM LOCK veya SCROLL LOCK tuşu dışında bir anahtara başvurur.
Örnekler
Aşağıdaki kod örneği, belirtilen anahtarın (bu örnekte Caps Lock tuşu) etkin olup olmadığını belirten bir ileti kutusu görüntüler.
#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
Açıklamalar
IsKeyLocked CAPS LOCK, NUM LOCK veya SCROLL LOCK tuşlarının tek tek veya birlikte açık olup olmadığını belirlemek için özelliğini kullanın.