组合框c#不允许修改所选索引

时间:2013-01-01 21:52:18

标签: c# combobox edit selectedindex

我有组合框,我希望所选索引的字符串无法编辑
我该怎么办? 感谢

2 个答案:

答案 0 :(得分:3)

如果你想阻止编辑组合框的文本框部分,你应该设置

 combobox1.DropDownStyle = ComboBoxStyle.DropDownList;

或使用“表单设计器”中的“属性”列表设置相同的属性

答案 1 :(得分:0)

  private void combobox1_KeyPress(object sender, KeyPressEventArgs e)
  {
      e.Handled = true;
  }