在comboBox中选择更改时动态更改listBox项

时间:2013-03-19 03:07:21

标签: c# wpf xaml

我有一个comboBox,允许用户选择他们想要的选择。根据comboBox的选择,我将显示listBox,其中包含与用户选择相关的字符串列表。

示例:用户在comboBox上选择“Animals”,listBox将显示“Monkeys,Horses,Pigs”。

尝试用最少的编码(XAML驱动)创建这个简单的绑定,但是1天无效。提前谢谢!

编辑:

嗨,对于那些有兴趣以另一种方式进行操作的人(仅使用xaml和类来存储所有数据),您可以在提供的链接中查看Jehof的答案。这是实现这一目标的一种简单方法。

ListBox does not display the binding data

1 个答案:

答案 0 :(得分:2)

以下是您正在寻找的内容的快速示例(为了帮助您入门)。

首先创建一个包含所有数据并将其绑定到ComboBox的对象,然后使用组合框SelectedItem填充ListBox

代码:

public partial class MainWindow : Window
{
    public MainWindow()
    { 
        InitializeComponent(); 
        Categories.Add(new Category { Name = "Animals", Items = new List<string> { "Dog", "Cat", "Horse" } });
        Categories.Add(new Category { Name = "Vehicles", Items = new List<string> { "Car", "Truck", "Boat" } });

    }

    private ObservableCollection<Category> _categories = new ObservableCollection<Category>();
    public ObservableCollection<Category> Categories
    {
        get { return _categories; }
        set { _categories = value; }
    }
}

public class Category
{
    public string Name { get; set; }
    public List<string> Items { get; set; }
}

的Xaml:

<Window x:Class="WpfApplication10.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" Name="UI">

        <StackPanel DataContext="{Binding ElementName=UI}">
            <ComboBox x:Name="combo" ItemsSource="{Binding Categories}" DisplayMemberPath="Name"/>
            <ListBox ItemsSource="{Binding SelectedItem.Items, ElementName=combo}"/>
        </StackPanel>
</Window>

结果:

enter image description here enter image description here enter image description here