如何在silverlight4中的datagrid中获取组合框的数据模板中复选框的值

时间:2013-01-10 10:22:51

标签: silverlight-4.0

我在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>

请帮帮我们。

谢谢,

1 个答案:

答案 0 :(得分:0)