在组合框中设置复选框以检查wpf

时间:2014-07-06 05:50:46

标签: c# wpf xaml data-binding wpf-controls

我创建了一个自定义的wpf控件 - 本质上是一个带复选框的combox。所有combox都成功绑定到项目列表。

这是我的xaml代码。

<ComboBox Height="28" HorizontalAlignment="Left" Margin="106,7,0,0" Name="comboBox1" VerticalAlignment="Top" Width="174" ItemsSource="{Binding Names}">
                <ComboBox.ItemTemplate>
                    <DataTemplate>
                        <CheckBox Name="ckabc" Content="{Binding}" CommandParameter="{Binding}"/>
                    </DataTemplate>
                </ComboBox.ItemTemplate>
            </ComboBox> 

我的代码就像这样:

private List<string> names;
public List<string> Names
    {
        get { return names; }
        set
        {
            names = value;
            this.OnPropertyChanged(new PropertyChangedEventArgs("Names"));
        }
    }
Names = new List<string> { "Sensor Not Connected", "Poor Signal Quality", "Excessive Light", "PreAmp Not Connected", "Replace Sensor", "Interference Detected", "Sensor Unusable", "Sensor Change" };
        this.OnPropertyChanged(new PropertyChangedEventArgs("Names"));

我为每个列表项创建了属性:

public string SensorNotConnected
    {
        get
        {
            return Names.ElementAt(0);
        }
        set
        {
            this.emuObj.SensorNotConnected(Convert.ToBoolean(value), channelIndex);
        }
    }

以同样方式为其他列表项创建属性。 我的想法是绑定复选框的Ischecked属性并迭代。 但我怎么能这样做。用户可以选中一个复选框或多个复选框。 请为此提供一些答案。

P.S:我正在使用MVVM模型。

1 个答案:

答案 0 :(得分:1)

这是一个如何解决这个问题的简单演示。该解决方案使用Mvvm Light,但这不是必需的。您可以创建一个类(在此示例中为“Name”),而不是只有List<string>,它具有可以绑定的bool IsChecked属性。请参阅第<CheckBox Grid.Column="1" Name="ckabc" IsChecked="{Binding IsChecked}"/>行,这是我们绑定IsChecked属性的地方。

<Window x:Class="CustomControlWpf.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525"
    DataContext="{Binding Source={StaticResource Locator}, Path=Main}">
<Grid>
    <ComboBox Height="28" HorizontalAlignment="Left" Margin="106,7,0,0"  VerticalAlignment="Top" Width="174" ItemsSource="{Binding Names}">
        <ComboBox.ItemTemplate>
            <DataTemplate>
                <Grid>
                    <Grid.ColumnDefinitions><ColumnDefinition></ColumnDefinition><ColumnDefinition></ColumnDefinition></Grid.ColumnDefinitions>
                    <TextBlock Text="{Binding Description}"></TextBlock>
                    <CheckBox Grid.Column="1" Name="ckabc" IsChecked="{Binding IsChecked}"/>
                </Grid>

            </DataTemplate>
        </ComboBox.ItemTemplate>
    </ComboBox>
</Grid>

public class Name
{
    public string Description { get; set; }
    public bool IsChecked { get; set; }
}

}

ViewModel:

 public class MainViewModel : ViewModelBase
{
    /// <summary>
    /// Initializes a new instance of the MainViewModel class.
    /// </summary>
    public MainViewModel()
    {
        Names = new List<Name>() { new Name { Description = "Name1", IsChecked = false }, new Name { Description = "Name2", IsChecked = false } };
    }

    private List<Name> _names;

    public List<Name> Names
    {
        get { return _names; }
        set
        {
            _names = value;
            RaisePropertyChanged(() => Names);
        }
    }


}