0
我是Silverlight中的新成員。 我有一個可觀察的集合在我的視圖模型中有對象列表。我如何與單選按鈕組綁定?Silverlight - 想知道如何綁定單選按鈕列表的Observable集合
我在下面嘗試過,但它不像單選按鈕組。
<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>