У меня есть такое перечисление:
public enum MyLovelyEnum
{
FirstSelection,
TheOtherSelection,
YetAnotherOne
};
У меня есть свойство в моем DataContext:
public MyLovelyEnum VeryLovelyEnum { get; set; }
И я получил три кнопки RadioButton в моем клиенте WPF.
<RadioButton Margin="3">First Selection</RadioButton>
<RadioButton Margin="3">The Other Selection</RadioButton>
<RadioButton Margin="3">Yet Another one</RadioButton>
Теперь, как мне привязать RadioButtons к свойству для правильной двусторонней привязки?