我在silverlight4的数据网格中有一个组合框。我在组合框的数据模板中放置了一个复选框,使组合框可以多选。现在我想获得组合框中所选项目的值。那我该怎么做呢?
这是我的代码:
<ComboBox Name="cbxitmes" Height="23" Width="255" IsSynchronizedWithCurrentItem="False"
ItemsSource="{Binding Path=GetItems,Mode=TwoWay}"
SelectedValue="{Binding Mode=TwoWay, Path=myname}" SelectedValuePath="myvalue">
<ComboBox.ItemTemplate>
<DataTemplate>
<CheckBox Content="{Binding myname}" ></CheckBox>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
请帮帮我们。
谢谢,
答案 0 :(得分:0)