Control.CanFocus Özellik
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.
Denetimin odağı alıp alamayacağını belirten bir değer alır.
public:
property bool CanFocus { bool get(); };
[System.ComponentModel.Browsable(false)]
public bool CanFocus { get; }
[<System.ComponentModel.Browsable(false)>]
member this.CanFocus : bool
Public ReadOnly Property CanFocus As Boolean
Özellik Değeri
true
denetim odağı alabilirse; aksi takdirde , false
.
- Öznitelikler
Örnekler
Aşağıdaki kod örneği, odağı alabilirse, odağı belirtilen Controldeğerine ayarlar.
public:
void ControlSetFocus( Control^ control )
{
// Set focus to the control, if it can receive focus.
if ( control->CanFocus )
{
control->Focus();
}
}
public void ControlSetFocus(Control control)
{
// Set focus to the control, if it can receive focus.
if(control.CanFocus)
{
control.Focus();
}
}
Public Sub ControlSetFocus(control As Control)
' Set focus to the control, if it can receive focus.
If control.CanFocus Then
control.Focus()
End If
End Sub
Açıklamalar
Denetimin giriş odağını alabilmesi için denetimin kendisine atanmış bir tanıtıcısı olmalıdır ve Visible hem denetim hem de tüm üst denetimleri için ve Enabled özelliklerinin her ikisi de olarak ayarlanmalıdır true
ve denetim bir form veya denetimin en dış üst öğesi bir form olmalıdır.