从绑定到可观察集合的NESTED列表框中的标签获取内容?

时间:2012-06-20 16:30:50

标签: c# wpf binding listbox observablecollection

我在列表框中有一个列表框,两者都绑定到一个可观察的集合。我为两者重载了SelectionChanged事件。对于嵌套列表框,我的数据模板中有一些标签。我希望能够获得这些标签的内容。这很难,因为即使定义了x:name属性,我也无法在后面的代码中引用它们中的任何一个。有人有什么想法吗?

<ListBox Grid.Row="5" x:Name="lb1" ItemsSource="{Binding}" DataContext="{Binding}" ScrollViewer.HorizontalScrollBarVisibility="Disabled" SelectionChanged="lb1_SelectionChanged">

        <ListBox.ItemsPanel>
            <ItemsPanelTemplate>
                 <WrapPanel/>
            </ItemsPanelTemplate>
        </ListBox.ItemsPanel>

        <ListBox.ItemTemplate>
            <DataTemplate>
                 <Label x:Name="txtEnclosure" Content="{Binding Path=EnclosureID}"/>
                 <......other labels bound to other properties...>
                 <ListBox x:Name="lbserver" ItemsSource="{Binding Path=Slist}">
                        <ListBox.ItemsPanel>
                            <ItemsPanelTemplate>
                                <WrapPanel/>
                            </ItemsPanelTemplate>
                        </ListBox.ItemsPanel>

                        <ListBox.ItemTemplate>
                            <DataTemplate>
                                 <Label x:Name="txtSlot" Content="{Binding Path=Slot}" />
                                 <Label x:Name="txtServer" Content="{Binding Path=HostnameID}" />
                            </DataTemplate>
                        </ListBox.ItemTemplate>
                    </ListBox>
            </DataTemplate>
        </ListBox.ItemTemplate>
    </ListBox>

父列表框绑定到一个名为Elist的可观察集合(一个可观察的Enclosures集合,我定义的类)

this.DataContext = Settings.Elist;

子列表框绑定到Enclosure类中的可观察集合。

public class Enclosure
{
    public ObservableCollection<Server> Slist { get; set; }
    ...contains other variables as well....
}

在应用程序中,它列出了机箱,每个机箱都有一个服务器列表。用户可以选择一个机箱,我可以根据SelectedIndex(我使用ElementAt(SelectedIndex))从Elist获取Enclosure。当我尝试从嵌套列表框中获取其中一个服务器时,事情变得更加棘手。我希望能够从列表中选择一个服务器,并从可观察的集合Slist中获取服务器。问题是,当用户直接选择服务器时,我不知道服务器来自Elist的哪个Enclosure,aaand我无法获取SelectedIndex,因为我无法从后面代码中的嵌套列表框中引用任何内容&GT;。&LT;确实是一个非常令人沮丧的问题......有没有人有任何想法?

如果我可以在代码中获取嵌套列表框中的项目,那么也是有用的。

1 个答案:

答案 0 :(得分:1)

下面的示例显示了当用户选择子项时如何获取选定的父级和子级,请参阅OnSelectedModelChanged方法。

XAML:

<Window x:Class="WpfApplication1.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">

    <StackPanel>
        <ListBox ItemsSource="{Binding .}">
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <StackPanel>
                        <TextBlock Text="{Binding Path=Name}" FontWeight="Bold"/>
                        <ListBox ItemsSource="{Binding Path=Models}" SelectionChanged="OnSelectedModelChanged">
                            <ListBox.ItemTemplate>
                                <DataTemplate>
                                    <TextBlock Text="{Binding Path=Name}" />
                                </DataTemplate>
                            </ListBox.ItemTemplate>
                        </ListBox>
                    </StackPanel>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>
    </StackPanel>
</Window>

代码背后:

using System.Windows;
using System.Windows.Controls;
using System.ComponentModel;
using System.Collections.Generic;
using System.Windows.Controls.Primitives;

namespace WpfApplication1
{
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();

            List<Make> cars = new List<Make>();
            cars.Add(new Make("Ford") { Models = new List<Model>() { new Model("F150"), new Model("Taurus"), new Model("Explorer") } });
            cars.Add(new Make("Honda") { Models = new List<Model>() { new Model("Accord"), new Model("Pilot"), new Model("Element") } });
            DataContext = cars; 
        }

        private void OnSelectedModelChanged(object sender, SelectionChangedEventArgs e)
        {
            Selector modelSelector = sender as Selector;
            Model selectedModel = modelSelector.SelectedItem as Model;
            Make selectedMake = modelSelector.DataContext as Make;
        }
    }

    public class Make
    {
        public Make(string name)
        {
            Name = name;
        }

        public string Name { get; private set; }
        public IEnumerable<Model> Models { get; set; }
    }

    public class Model
    {
        public Model(string name)
        {
            Name = name;
        }
        public string Name { get; private set; }
    }
}