Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e) { combobox.items.add=("peter magdy"); if (combobox.selecteditems=("peter magdy") textbox.text==("age 23, male, etc"); }
このコードは、テキストボックスにコンボボックスの値を入力するのに役立ちます
これを試して。
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e) { comboBox1.Items.Add("peter magdy"); if (comboBox1.SelectedItem == "peter magdy") textBox.Text = "age 23, male, etc"; }
ただし、(コードまたは winform デザイナーで) コンポーネントの名前を変更する必要があるかもしれません。