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
only use casting this way:
if((YouEnum)ComboBoxControl.SelectedItem == YouEnum.Español) { //TODO: type you code here }