我想做以下事情:
- 按下按钮时将下拉列表中的文本插入标签
- 然后在单击第二个按钮后,首先添加另一个文本
- 单击另一个按钮后,同一标签上的另一个文本
如何才能做到这一点?
label1 = combobox item1 + combobox item 2 + ... item n,点击后
private void button1_Click(object sender, EventArgs e) {
label1.Text = item1 + item2, ...;
if (comboBox1.SelectedItem.ToString() == "item1")
{
text = "item1";
}
else if (comboBox1.SelectedItem.ToString() == "item2")
{
text = "item2";
}
}