使用CheckBox作为ItemTemplate时,迭代ComboBox项

时间:2013-10-14 17:47:14

标签: c# wpf checkbox combobox

我使用带有CheckBox的ComboBox作为ItemTemplate,我想迭代所有项目,获取其检查状态,并在检查为true时将其内容写入字符串。问题是我使用SqlDataReader来填充和绑定数据库中的ComboBox,我找不到访问项目IsChecked属性的方法。

<ComboBox>
    <ComboBox.ItemTemplate>
        <DataTemplate>
            <StackPanel Orientation="Horizontal">
                <CheckBox Click="CheckBox_Click" Content="{Binding}" IsChecked="{Binding Path=IsSelected, Mode=TwoWay}" Tag="{RelativeSource FindAncestor, AncestorType={x:Type ComboBox}}"/>
            </StackPanel>
        </DataTemplate>
    </ComboBox.ItemTemplate>
</ComboBox>

我尝试以这种方式将ComboBox项目作为CheckBoxes投射到它们的click事件上:

private void CheckBox_Click(object sender, RoutedEventArgs e)
{    
    for (int i = 0; i < myComboBox.Items.Count; i++)
    {
        CheckBox cb = (myComboBox.Items[i] as CheckBox);
        if (cb.IsChecked == true)
        {
            myString += "," + myComboBox.SelectedItem.ToString() + "";
        }
    }
}

但是cb总是返回NULL。我猜它是IsChecked属性绑定的东西。

我想让这个工作,但我不想创建一个对象/类来填充组合框,因为我需要它填充数据库。我真的很感激任何帮助。

1 个答案:

答案 0 :(得分:0)

你可以做这样的事情(我不是坚持使用MVVM模式)而且这是在飞行中写的:

 public ArrayList List { get; set; }
        public MainWindow()
        {
            InitializeComponent();


            SqlDataReader rdr = cmd.ExecuteReader();
            List = new ArrayList();
            while (rdr.Read()){
                List.Add(new Class{ Id = rdr.GetString(0), Value = rdr.GetString(1), IsChecked= rdr.GetString(1) as bool}); //this class will contain the same data schema in your datareader but using properties 
            }
            rdr.Close();
            DataContext = List;
        }

  <ComboBox Name="ComboBox" ItemsSource="{Binding}" >
            <ComboBox.ItemTemplate>
                <DataTemplate>
                    <StackPanel Orientation="Horizontal">
                        <CheckBox Tag="{Binding Id}" Content="{Binding Name}" IsChecked="{Binding IsChecked}"/>
                    </StackPanel>
                </DataTemplate>
            </ComboBox.ItemTemplate>

        </ComboBox>