我想創建一個複選框,如果選中,那麼它應該顯示下拉列表。如果沒有選中,則應該隱藏下拉菜單。這是我的代碼在Form.Designer.cs文件中的外觀。在C中隱藏下拉列表#
this.comboBox2.FormattingEnabled = true;
this.comboBox2.Items.AddRange(new object[] {
"Database 1",
"Database 2",
"Database 3"});
this.comboBox2.Location = new System.Drawing.Point(165, 436);
this.comboBox2.Name = "comboBox2";
this.comboBox2.Size = new System.Drawing.Size(150, 21);
this.comboBox2.TabIndex = 13;
this.comboBox2.Text = "Database";
和其他文件我的複選框代碼是
if (checkBox1.CheckState == CheckState.Checked)
{
}
謝謝,我是想之前甚至一樣。然後我想這可能是我在錯誤的地方編碼。但我得到了我的錯誤,實際上我的複選框是在按鈕點擊方法中檢查的,我沒有點擊按鈕,因爲那不是我的要求。所以現在我已經將按鈕點擊方法之外的複選框文本移動了。 – 2013-05-03 15:28:29