CheckBox.AutoCheck Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta un valore che indica se i valori della proprietà Checked o CheckState e l'aspetto dell'oggetto CheckBox vengono automaticamente modificati quando viene fatto clic su CheckBox.
public:
property bool AutoCheck { bool get(); void set(bool value); };
public bool AutoCheck { get; set; }
member this.AutoCheck : bool with get, set
Public Property AutoCheck As Boolean
Valore della proprietà
true
se il valore di Checked o CheckState e l'aspetto del controllo variano automaticamente al verificarsi dell'evento Click; in caso contrario, false
. Il valore predefinito è true
.
Esempio
L'esempio di codice seguente crea e inizializza un CheckBoxoggetto , fornisce l'aspetto di un interruttore, imposta AutoCheck su false
e lo aggiunge a un Formoggetto .
public:
void InstantiateMyCheckBox()
{
// Create and initialize a CheckBox.
CheckBox^ checkBox1 = gcnew CheckBox;
// Make the check box control appear as a toggle button.
checkBox1->Appearance = Appearance::Button;
// Turn off the update of the display on the click of the control.
checkBox1->AutoCheck = false;
// Add the check box control to the form.
this->Controls->Add( checkBox1 );
}
public void InstantiateMyCheckBox()
{
// Create and initialize a CheckBox.
CheckBox checkBox1 = new CheckBox();
// Make the check box control appear as a toggle button.
checkBox1.Appearance = Appearance.Button;
// Turn off the update of the display on the click of the control.
checkBox1.AutoCheck = false;
// Add the check box control to the form.
Controls.Add(checkBox1);
}
Public Sub InstantiateMyCheckBox()
' Create and initialize a CheckBox.
Dim checkBox1 As New CheckBox()
' Make the check box control appear as a toggle button.
checkBox1.Appearance = Appearance.Button
' Turn off the update of the display on the click of the control.
checkBox1.AutoCheck = False
' Add the check box control to the form.
Controls.Add(checkBox1)
End Sub
Commenti
Se AutoCheck è impostato su false, è necessario aggiungere codice per aggiornare i Checked valori o CheckState nel Click gestore eventi.