标签:blog http os for ar art div log amp
// 存入 text 和 value
int ss = 0;
for (int i = 0; i < 10; i++)
{
ComboBoxItem newItem = new ComboBoxItem();
newItem.Text = i.ToString();
ss = i + 100;
newItem.Value = ss.ToString();
comboBox1.Items.Add(newItem);
}
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
//textbox 中显示combox选中项的value
textBox1.Text = ((ComboBoxItem)comboBox1.Items[comboBox1.SelectedIndex]).Value.ToString();
}
标签:blog http os for ar art div log amp
原文地址:http://www.cnblogs.com/miao1314/p/3931122.html