コンボボックスで特定のインデックスが選択されたときに C1ComboBox にデータを設定するには、次のように、SelectedIndexChanged イベントを使用します。
Visual Basic でコードを書く場合
Title Text コードのコピーPrivate Sub comboBox1_SelectedIndexChanged(sender As Object, e As EventArgs)
c1ComboBox2.Items.Clear()
If c1ComboBox1.SelectedIndex.ToString() = "1" Thenc1ComboBox2.Items.Add("You selected the second item.")
Elsec1ComboBox2.Items.Add("You did not select the second item.")
End If
End Sub
C# でコードを書く場合
C# コードのコピーprivate void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
c1ComboBox2.Items.Clear();
if (c1ComboBox1.SelectedIndex.ToString() == "1")
{
c1ComboBox2.Items.Add("You selected the second item.");
}
else
{
c1ComboBox2.Items.Add("You did not select the second item.");}
}