Binding an enum to a WinForms combo box, and then setting it

前端 未结 28 2166
心在旅途
心在旅途 2020-11-28 04:33

a lot of people have answered the question of how to bind an enum to a combo box in WinForms. Its like this:

comboBox1.DataSource = Enum.GetValues(typeof(MyE         


        
28条回答
  •  我在风中等你
    2020-11-28 04:55

    This worked for me:

    comboBox1.DataSource = Enum.GetValues(typeof(MyEnum));
    comboBox1.SelectedIndex = comboBox1.FindStringExact(MyEnum.something.ToString());
    

提交回复
热议问题