每行在listview中动态更新组合框项目源

时间:2013-10-11 00:39:13

标签: wpf listview dynamic-binding

我目前有一个包含3个组合框的Listview框。我从一个SQL数据库填充它们。对于每一行,我想让第3个组合框根据第二个组合框的选定值更改其内容。

组合框将是:cmbx1(员工[jack,jill,tom,lisa]),cmbx2(产品[钢笔,铅笔,订书机]),cmbx3(颜色 - 将根据产品的颜色为动态)

产品和颜色选项:笔[红色,蓝色,黑色];铅笔[黑色,橙色,红色];订书机[粉红色,蓝绿色,紫色,棕色]

如果对于Row1,用户选择笔,则该产品的颜色组合框中仅列出该产品的可用颜色。根据所选产品,下一行可以有不同的颜色选项。

这是可能的还是我应该找到另一种方法来实现结果?

这是目前的......

                                        

<ListView.View>
    <GridView>
        <GridViewColumn Header="Employee" Width="150">
            <GridViewColumn.CellTemplate>
                <DataTemplate>
                    <ComboBox ItemsSource="{Binding lStrEmployee}" Width="120" />
                </DataTemplate>
            </GridViewColumn.CellTemplate>
        </GridViewColumn>
        <GridViewColumn Header="Product" Width="150">
            <GridViewColumn.CellTemplate>
                <DataTemplate>
                    <ComboBox ItemsSource="{Binding lStrProduct}" Width="120" />
                </DataTemplate>
            </GridViewColumn.CellTemplate>
        </GridViewColumn>
        <GridViewColumn Header="Color" Width="150">
            <GridViewColumn.CellTemplate>
                <DataTemplate>
                    <ComboBox ItemsSource="{Binding lStrColor}" Width="120" />
                </DataTemplate>
            </GridViewColumn.CellTemplate>
        </GridViewColumn>
</ListView.View>

背后的代码

List<Int32> liEmployee = new List<Int32>();
List<string> lsEmployee = new List<string>();
List<Int32> liProduct = new List<Int32>();
List<string> lsProduct = new List<string>();
List<Int32> liColor = new List<Int32>();
List<string> lsColor = new List<string>();

SqlConnection conn = new SqlConnection("Data Source=localhost\\SQLEXPRESS;Initial Catalog=testDB;Persist Security Info=True;User ID=USER;Password=PASSWORD;");//Connect Timeout=900
SqlCommand cmd1 = new SqlCommand("select id,employee from testDB.dbo.dmEmployee where inactive=0", conn);
SqlCommand cmd2 = new SqlCommand("select id,Product from testDB.dbo.tblProductList where inactive=0", conn);
SqlCommand cmd3 = new SqlCommand("select id,Color from testDB.dbo.Color where inactive=0", conn);

conn.Open();
SqlDataReader dr1 = cmd1.ExecuteReader();
while (dr1.Read())
{
    liEmployee.Add(dr1.GetInt32(dr1.GetOrdinal("id")));
    lsEmployee.Add(dr1.GetString(dr1.GetOrdinal("employee")));
}
conn.Close();
conn.Open();
SqlDataReader dr2 = cmd2.ExecuteReader();
while (dr2.Read())
{
    liProduct.Add(dr2.GetInt32(dr2.GetOrdinal("id")));
    lsProduct.Add(dr2.GetString(dr2.GetOrdinal("Product")));
}
conn.Close();
conn.Open();
SqlDataReader dr3 = cmd3.ExecuteReader();
while (dr3.Read())
{
    liColor.Add(dr3.GetInt32(dr3.GetOrdinal("id")));
    lsColor.Add(dr3.GetString(dr3.GetOrdinal("Color")));
}
conn.Close();


List<lvItem> itemFound = new List<lvItem>();
itemFound.Clear();
lvItem puzzlePieces;
for (int cnt = 0; cnt < 10; cnt++)
{
    puzzlePieces = new lvItem();

    puzzlePieces.lStrEmployee = lsEmployee;
    puzzlePieces.lStrDatabase = lsDatabase;
    puzzlePieces.lStrProvider = lsProvider;

    itemFound.Add(puzzlePieces);
}
list1.ItemsSource = itemFound;

谢谢!

1 个答案:

答案 0 :(得分:1)

我很惊讶您没有得到任何问题的答案。也许是因为你似乎没有按照WPF方式做事,或者可能是因为你要求这么多?

首先要做的是......您需要创建一个实现INotifyPropertyChanged接口的数据类型类,并包含在ListView的每一行中显示所需的所有属性。在您的情况下,您需要三个集合和三个选定的项目值。举个例子,你可以这样做(自己实现INotifyPropertyChanged接口):

public class RowData : INotifyPropertyChanged
{
    public ObservableCollection<Employee> Employees { get; set; }
    public Employee SelectedEmployee { get; set; }
    public ObservableCollection<Product> Products { get; set; }
    public Product SelectedProduct { get; set; }
    public ObservableCollection<Brush> Colours { get; set; }
    public Brush SelectedColour { get; set; }
}

注意使用Brush类而不是Color结构,这是因为Brush是一个类,这意味着我们可以绑定它,也因为它更多主要用于WPF。

但是,除了Colours集合之外,每行中的每个对象都具有相同的集合并不是最佳的,每个行的集合可能不同。话虽如此,这正是我要做的事情,因为我会更快地解释,你可以在以后的阶段自己改进代码:

现在您拥有了数据类型类,我们需要添加该类型的属性以绑定到您的ListView控件。如果您使用的是MainWindow后面的代码,那么让我们为它创建一个DependencyProperty

public static readonly DependencyProperty RowDataProperty = DependencyProperty.
    Register("RowData", typeof(ObservableCollection<RowData>), typeof(MainWindow), 
    new UIPropertyMetadata(new ObservableCollection<RowData>()));

public ObservableCollection<RowData> RowData
{
    get { return (ObservableCollection<RowData>)GetValue(RowDataProperty); }
    set { SetValue(RowDataProperty, value); }
}

填写完集合后,您现在可以将其绑定到ListView控件:

xmlns:Local="clr-namespace:YourWpfApplicationName"
...
<ListView ItemsSource="{Binding RowData, RelativeSource={RelativeSource AncestorType={
    x:Type Local:MainWindow}}}">
    ...
</ListView>

简而言之,RelativeSource Binding只是在寻找您在后面的代码中定义的属性。现在,如何定义每个ComboBox中应出现GridViewColumn?您需要定义GridViewColumn.CellTemplate

<GridViewColumn Header="Employees">
    <GridViewColumn.CellTemplate>
        <DataTemplate>
            <ComboBox ItemsSource="{Binding Employees}" SelectedItem="{Binding 
                SelectedEmployee}" />
        </DataTemplate>
    </GridViewColumn.CellTemplate>
</GridViewColumn>

您需要定义此示例中的其他列。因此,这个难题的最后一部分是如何更新Colours ComboBox的内容,这取决于其他ComboBox es的选定值?答案取决于RowData类中选定的值属性:

public Employee SelectedEmployee
{
    get { return selectedEmployee; }
    set
    {
        selectedEmployee = value;
        NotifyPropertyChanged(SelectedEmployee);
        Colours = GetColours();
    }
}

private ObservableCollection<Brush> GetColours()
{
    ObservableCollection<Brush> newColours = new ObservableCollection<Brush>();
    if (SelectedEmployee.Name == "Some Name" && SelectedProduct.Name == 
        "Some Product") newColours.AddRange( new List<Brush>() { Brushes.Red, 
        Brushes.White, Brushes.Blue } );
    else ...
}

有很多方法可以做到这一点,我会把它留给你。你现在应该有一个工作的例子,我现在意识到为什么没有人回答你的问题......对于任何理智的人来说太过分了!花了这么长时间之后,如果你试图解决你自己发现的任何小问题,我将不胜感激,并希望它对你有所帮助。