111,095
社区成员




if (MessageBox.Show("?", "", MessageBoxButtons.OKCancel) == System.Windows.Forms.DialogResult.Cancel)
{
this.comboBox1.SelectedIndex = miCurSel;
}
private Int32 miCurSel;
private void Form1_Load(object sender, EventArgs e)
{
String[] items = {"a","b","c","d","e"};
comboBox1.Items.AddRange(items);
comboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
comboBox1.SelectedIndex = miCurSel = 0;
}
private void comboBox1_SelectionChangeCommitted(object sender, EventArgs e)
{
if (MessageBox.Show("?", "", MessageBoxButtons.OKCancel) == System.Windows.Forms.DialogResult.Cancel)
{
this.comboBox1.SelectedIndex = miCurSel;
}
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
miCurSel = comboBox1.SelectedIndex;
}