CheckBox.Checked Propriedade

Definição

Obtém ou define um valor que indica se o CheckBox está no estado marcado.

public:
 property bool Checked { bool get(); void set(bool value); };
[System.ComponentModel.Bindable(true)]
public bool Checked { get; set; }
[System.ComponentModel.Bindable(true)]
[System.ComponentModel.SettingsBindable(true)]
public bool Checked { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.Checked : bool with get, set
[<System.ComponentModel.Bindable(true)>]
[<System.ComponentModel.SettingsBindable(true)>]
member this.Checked : bool with get, set
Public Property Checked As Boolean

Valor da propriedade

true se o CheckBox estiver no estado marcado; caso contrário, false. O valor padrão é false.

Observação: se a ThreeState propriedade estiver definida como true, a Checked propriedade retornará true para um Checked ou IndeterminateCheckState.

Atributos

Exemplos

O exemplo de código a seguir exibe os valores de três propriedades em um rótulo. A ThreeState propriedade alterna entre true e false com cliques alternados do controle e as CheckAlign alternativas entre um ContentAlignment valor de MiddleRight e MiddleLeft. Este exemplo mostra como os valores da propriedade mudam conforme a ThreeState propriedade é alterada e o controle é verificado. Este exemplo exige que um CheckBoxe LabelButton tenham sido instanciados em um formulário e que o rótulo seja grande o suficiente para exibir três linhas de texto, bem como uma referência ao System.Drawing namespace. Esse código deve ser chamado no Click manipulador de eventos do controle.

private:
   void AdjustMyCheckBoxProperties()
   {
      // Concatenate the property values together on three lines.
      label1->Text = String::Format( "ThreeState: {0}\nChecked: {1}\nCheckState: {2}",
         checkBox1->ThreeState, checkBox1->Checked, checkBox1->CheckState );
      
      // Change the ThreeState and CheckAlign properties on every other click.
      if ( !checkBox1->ThreeState )
      {
         checkBox1->ThreeState = true;
         checkBox1->CheckAlign = ContentAlignment::MiddleRight;
      }
      else
      {
         checkBox1->ThreeState = false;
         checkBox1->CheckAlign = ContentAlignment::MiddleLeft;
      }
   }
private void AdjustMyCheckBoxProperties()
 {
    // Change the ThreeState and CheckAlign properties on every other click.
    if (!checkBox1.ThreeState)
    {
       checkBox1.ThreeState = true;
       checkBox1.CheckAlign = ContentAlignment.MiddleRight;
    }
    else
    {
       checkBox1.ThreeState = false;
       checkBox1.CheckAlign = ContentAlignment.MiddleLeft;
    }

    // Concatenate the property values together on three lines.
    label1.Text = "ThreeState: " + checkBox1.ThreeState.ToString() + "\n" +
                  "Checked: " + checkBox1.Checked.ToString() + "\n" +
                  "CheckState: " + checkBox1.CheckState.ToString(); 
 }
Private Sub AdjustMyCheckBoxProperties()

    ' Change the ThreeState and CheckAlign properties on every other click.
    If Not checkBox1.ThreeState Then
        checkBox1.ThreeState = True
        checkBox1.CheckAlign = ContentAlignment.MiddleRight
    Else
        checkBox1.ThreeState = False
        checkBox1.CheckAlign = ContentAlignment.MiddleLeft
    End If

    ' Concatenate the property values together on three lines.
    label1.Text = "ThreeState: " & checkBox1.ThreeState.ToString() & ControlChars.Cr & _
        "Checked: " & checkBox1.Checked.ToString() & ControlChars.Cr & _
        "CheckState: " & checkBox1.CheckState.ToString()

End Sub

Comentários

Quando o valor é true, a CheckBox parte do controle exibe uma marcar marca. Se a Appearance propriedade estiver definida Buttoncomo , o controle aparecerá afundado quando Checked é true e gerado como um botão padrão quando false.

Aplica-se a

Confira também