private void Form1_Load(object sender, EventArgs e)
{
comboBox1.Items.Add("aaa");
comboBox1.Items.Add("bbb");
comboBox1.Items.Add("ccc");
comboBox1.Items.Add("ddd");
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
textBox1.Text = comboBox1.SelectedItem.ToString();
}