HOW TO:使用 Windows Form CheckBox 控制項設定選項
更新:2007 年 11 月
Windows Form CheckBox 控制項是用來提供使用者 True/False 或 Yes/No 選項。控制項被選取後會顯示核取記號。
若要使用 CheckBox 控制項設定選項
檢查 Checked 屬性值以決定其狀態,並使用該值來設定選項。
在下列程式碼範例中,當引發 CheckBox 控制項的 CheckedChanged 事件時,若已選取該核取方塊,則表單的 AllowDrop 屬性會設定為 false。這在當您要限制使用者互動的情況下很有用。
Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged ' Determine the CheckState of the check box. If CheckBox1.CheckState = CheckState.Checked Then ' If checked, do not allow items to be dragged onto the form. Me.AllowDrop = False End If End Sub
private void checkBox1_CheckedChanged(object sender, System.EventArgs e) { // Determine the CheckState of the check box. if (checkBox1.CheckState == CheckState.Checked) { // If checked, do not allow items to be dragged onto the form. this.AllowDrop = false; } }
private void checkBox1_CheckedChanged(System.Object sender, System.EventArgs e) { // Determine the CheckState of the check box. if ( checkBox1.get_CheckState() == CheckState.Checked ) { // If checked, do not allow items to be dragged onto the form. this.set_AllowDrop(false); } }
private: void checkBox1_CheckedChanged(System::Object ^ sender, System::EventArgs ^ e) { // Determine the CheckState of the check box. if (checkBox1->CheckState == CheckState::Checked) { // If checked, do not allow items to be dragged onto the form. this->AllowDrop = false; } }
請參閱
工作
HOW TO:回應 Windows Form CheckBox 按一下動作