我是Silverlight的新手。 我的视图模型中有一个可观察的集合,其中包含对象列表。我如何与单选按钮组绑定?
我在下面尝试过,但它不像单选按钮组那样。
<UserControl.Resources>
<DataTemplate x:Key="TableItemTemplate">
<StackPanel Width="auto" Orientation="Horizontal" >
<RadioButton Margin="1,1,1,1"
>
</RadioButton >
<TextBlock Text="{Binding Caption}"></TextBlock>
</StackPanel>
</DataTemplate>
</UserControl.Resources>
<ListBox Margin ="3,3,3,3"
ItemsSource="{Binding OptionLIst}"
ItemTemplate="{StaticResource TableItemTemplate}"
>
</ListBox>
答案 0 :(得分:1)
将“组名”属性添加到单选按钮
GroupName="myGroup"