How do i show enum values in a combo-box? The code below result in the combobox having all displayed names being \"caseHandler.cState\". I wanted it to have the actual names
Have you tried to use
cbState.DataSource = Enum.GetNames(typeof(caseState));
And when retrieving data just Parse it