我对我的 Silverlight5 和 MVVM 模式有疑问..
在我的用户控件窗口中,我有 2 个单选按钮控件,并且我使用GroupName="sex"
.
语法是:
<RadioButton IsChecked="{Binding EntityValue,Mode=TwoWay}" Content="Male"
GroupName="Sex"
Visibility="{Binding DataTypeID, Converter={StaticResource radioconverter}}"/>
<RadioButton IsChecked="{Binding EntityValue,Mode=TwoWay}" Content="Female"
GroupName="Sex"
Visibility="{Binding DataTypeID, Converter={StaticResource radioconverter}}"/>
我已成功使用实体框架将检查值插入到数据库中。
例如:我的数据库将如下所示:
CustomerID | CustomerName | EntityValue |
------------------------------------------
1 | raj | Male
2 | reena | Female
数据库名称是:CDetails
如果我选择了要绑定到我customerID=1
的值的方法Male
radioButton1
和
如果我选择了要绑定到我customerID=2
的值的方法Female
radioButton2
这怎么可能?