如何使用wpf在c#中获取组合框复选框选中的值

时间:2016-01-06 07:23:39

标签: c# wpf

                <ComboBox.ItemTemplate>
                    <DataTemplate>
                        <CheckBox 

                     Style="{StaticResource CheckBoxStyle}" 

                     Content="{Binding CDM_VALUE1}" CommandParameter="{Binding}"  

                     Command="{Binding ElementName=MyWindow, Path=DataContext.SetSelectAllCommand}"/>
                    </DataTemplate>

我在复选框中给出了项目模板

1 个答案:

答案 0 :(得分:0)

您需要在XAML代码中添加参数IsChecked

IsChecked="{Binding Path=SetSelectAllCommand, Mode=TwoWay}"

此链接可以帮助您How can I get the checked checkbox values using MVVM?