0

我在一个列表框中有一个列表框,并且两者都绑定到一个可观察的集合。我已经为两者重载了 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....
}

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

如果我可以在代码中获取嵌套列表框中的项目,那也会很有帮助。

4

1 回答 1

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; }
    }
}
于 2012-06-20T21:11:41.927 回答