As an example take the following code:
public enum ExampleEnum { FooBar, BarFoo }
public class ExampleClass : INotifyPropertyChanged
{
private ExampleEn
you can consider something like that:
define a style for textblock, or any other control you want to use to display your enum:
define your style for ComboBoxItem
add a combobox and load it with your enum values:
Value1
if your enum is large, you can of course do the same in code, sparing a lot of typing. i like that approach, since it makes localization easy - you define all the templates once, and then, you only update your string resource files.