I’m attempting to have a combo-box display a pre-defined set of values – in this case an enum. For example :
public enum Protocol
{
UDP = 0,
TCP,
RS232
}
However I seem to fail at getting it done. Is this possible at all? I’ve attempted to use databinding however Blend only found all classes from the namespace, not the enum (which is not an object obviously)
Bind
namesbelow to yourComboBox: