<CheckBox Content="1" Margin="43,73,430,227" />
<CheckBox Content="2" Margin="123,73,359,227"/>
</Grid>
以上是我的复选框。我需要将它们分组。我检查1然后2应该是未选中的,反之亦然。这应该在xaml中完成。是否有任何属性设置或xaml代码来应用我的要求,而不是添加c#代码。
答案 0 :(得分:3)
您是否尝试过使用RadioButton?
<RadioButton GroupName="MyGroup" Content="1" Margin="43,73,430,227" />
<RadioButton GroupName="MyGroup" Content="2" Margin="123,73,359,227"/>
如果您仍需要它们看起来像复选框,请使用this answer。