Freigeben über


Control.CanFocus-Eigenschaft

Ruft einen Wert ab, der angibt, ob das Steuerelement den Fokus erhalten kann.

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

Syntax

'Declaration
Public ReadOnly Property CanFocus As Boolean
'Usage
Dim instance As Control
Dim value As Boolean

value = instance.CanFocus
public bool CanFocus { get; }
public:
property bool CanFocus {
    bool get ();
}
/** @property */
public boolean get_CanFocus ()
public function get CanFocus () : boolean

Eigenschaftenwert

true, wenn das Steuerelement den Fokus erhalten kann, andernfalls false.

Hinweise

Damit ein Steuerelement den Eingabefokus erhält, muss dem Steuerelement ein Handle zugeordnet sein, und die Visible-Eigenschaft und die Enabled-Eigenschaft müssen beide auf true für das Steuerelement und alle seine übergeordneten Steuerelemente festgelegt sein. Das Steuerelement selbst bzw. das äußerste ihm übergeordnete Steuerelement muss ein Formular sein.

Beispiel

Im folgenden Codebeispiel wird der Fokus auf das angegebene Control festgelegt, sofern es den Fokus erhalten kann.

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
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 void ControlSetFocus(Control control)
{
    // Set focus to the control, if it can receive focus.
    if (control.get_CanFocus()) {
        control.Focus();
    }
} //ControlSetFocus

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
Enabled
Handle
Visible
Focus
Focused
CanSelect