如何将无线电按钮绑定到一个枚举上?我有一个像这样的枚举: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绑定到属性,以便进行正确的双向绑定?
添加回答
举报
0/150
提交
取消