我有一个这样的enum:
public enum MyLovelyEnum
{
FirstSelection,
TheOtherSelection,
YetAnotherOne
};
我在DataContext中有一个属性:
public MyLovelyEnum VeryLovelyEnum { get; set; }
我有三个电台按钮在我的WPF客户端。
<RadioButton Margin="3">First Selection</RadioButton>
<RadioButton Margin="3">The Other Selection</RadioButton>
<RadioButton Margin="3">Yet Another one</RadioButton>
现在,我如何绑定RadioButtons属性为适当的双向绑定?