Control.CanSelect Właściwość
Definicja
Pobiera wartość wskazującą, czy można wybrać kontrolkę.Gets a value indicating whether the control can be selected.
public:
property bool CanSelect { bool get(); };
[System.ComponentModel.Browsable(false)]
public bool CanSelect { get; }
[<System.ComponentModel.Browsable(false)>]
member this.CanSelect : bool
Public ReadOnly Property CanSelect As Boolean
Wartość właściwości
true
Jeśli kontrolka może być zaznaczona; w przeciwnym razie false
.true
if the control can be selected; otherwise, false
.
- Atrybuty
Przykłady
Poniższy przykład kodu wybiera określony Control , jeśli jest wybrany.The following code example selects the specified Control, if it is selectable.
public:
void ControlSelect( Control^ control )
{
// Select the control, if it can be selected.
if ( control->CanSelect )
{
control->Select( );
}
}
public void ControlSelect(Control control)
{
// Select the control, if it can be selected.
if(control.CanSelect)
{
control.Select();
}
}
Public Sub ControlSelect(control As Control)
' Select the control, if it can be selected.
If control.CanSelect Then
control.Select()
End If
End Sub
Uwagi
Ta właściwość zwraca true
, jeśli Selectable
wartość System.Windows.Forms.ControlStyles jest ustawiona na true
, jest zawarta w innym formancie, sama kontrolka jest widoczna i włączona, a wszystkie kontrolki nadrzędne są widoczne i włączone.This property returns true
if the Selectable
value of System.Windows.Forms.ControlStyles is set to true
, is contained in another control, the control itself is visible and enabled, and all its parent controls are visible and enabled.
Kontrolki Windows Forms na poniższej liście nie są wybierane i zwracają wartość false
CanSelect właściwości.The Windows Forms controls in the following list are not selectable and will return a value of false
for the CanSelect property. Kontrolki pochodne od tych formantów również nie są wybierane.Controls derived from these controls are also not selectable.
LinkLabel (Jeśli w formancie nie ma żadnego linku)LinkLabel (when there is no link present in the control)