チェックボックスを作成したいのですが、それがチェックされている場合は、ドロップダウンが表示されます。チェックされていない場合は、ドロップダウンを非表示にする必要があります。これは、私のコードが Form.Designer.cs ファイルでどのように見えるかです。
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)
{
}