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
this is the solution to load item of enum in combobox :
comboBox1.Items.AddRange( Enum.GetNames(typeof(Border3DStyle)));
And then use the enum item as text :
toolStripStatusLabel1.BorderStyle = (Border3DStyle)Enum.Parse(typeof(Border3DStyle),comboBox1.Text);