我在 silverlight4 的组合框的数据模板中有一个复选框。现在我想在它的 selectedindex 更改事件上获取组合框中的复选框。那么我该怎么做呢?
这是我的代码:
<ComboBox Height="Auto" x:Name="CB_Categories" SelectionChanged="CB_Categories_SelectionChanged" Tag="">
<ComboBox.ItemTemplate>
<DataTemplate>
<CheckBox IsChecked="False" Content="{Binding Name}" CommandParameter="{Binding ProductCategoryID}" Click="CheckBox_Click" />
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
请帮帮我。
谢谢,