0

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

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

产品和颜色选择:笔[红、蓝、黑];铅笔[黑、橙、红];订书机[粉色、青色、紫色、棕色]

如果对于第 1 行,用户选择了一支笔,那么只有该产品的可用颜色将列在该行的颜色组合框中。根据所选产品,下一行可能有不同的颜色选项。

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

这是目前拥有的...

<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;

谢谢!

4

1 回答 1

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就是寻找你在后面代码中定义的属性。现在,如何定义 aComboBox应该出现在 each 中GridViewColumn?您需要定义GridViewColumn.CellTemplate

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

您需要定义此示例中的其他列。那么这个谜题的最后一部分是如何更新Colours ComboBox依赖于其他ComboBoxes的选择值的内容?答案在于您在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 ...
}

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

于 2013-10-11T10:25:47.813 回答