多重输出的多重绑定

MultiBinding with Multiple output

让我们考虑如下动物 Model

public class Animal
{
    public string name { set; get; }
    public int age { set; get; }
}

Animal 对象的集合如下:

Dictionary<string, Dictionary<string, ObservableCollection<Animal>>> animals;

在我的 ViewModel 中,我填充 animals 就像:

var lions = new ObservableCollection<Animal>();
lions.Add(new Animal("myLion 1", 2));
var tigers = new ObservableCollection<Animal>();
tigers.Add(new Animal("myTiger 1", 1));
var wild = new Dictionary<string, ObservableCollection<Animal>>();
wild.Add("Lion", lions);
wild.Add("Tiger", tigers);


var cats = new ObservableCollection<Animal>();
cats.Add(new Animal("myCat 1", 2));
cats.Add(new Animal("myCat 2", 4));
var dogs = new ObservableCollection<Animal>();
dogs.Add(new Animal("myDog 1", 1));
var pets = new Dictionary<string, ObservableCollection<Animal>>();
pets.Add("cat", cats);
pets.Add("dog", dogs);


animals = new Dictionary<string, Dictionary<string, ObservableCollection<Animal>>>();
animals.Add("wild animals", wild);
animals.Add("pets", pets);

View中我定义了两个ComboBox和一个DataGrid,描述如下:

我的DataGrid定义和绑定如下:

<DataGrid>
    <DataGrid.ItemsSource>
        <MultiBinding Converter="{StaticResource animalSelectionConverter}">
            <Binding Path="selectedAnimalType"/>
            <Binding Path="selectedAnimalCategory"/>
        </MultiBinding>
    </DataGrid.ItemsSource>
    <DataGrid.Columns>
        <DataGridTextColumn Header="Animal Type" Binding="{Binding Path=XYZ}"/> <!--The Question-->
        <DataGridTextColumn Header="Name" Binding="{Binding name}"/>
        <DataGridTextColumn Header="Age" Binding="{Binding age}"/>
    </DataGrid.Columns>
</DataGrid>

最后,我定义 AnimalSelectionConverter 如下:

public class AnimalSelectionConverter : IMultiValueConverter
{
    public object Convert(object[] values, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        return ViewModel.Default.animals[(string)values[0]][(string)values[1]];
    }    
    public object[] ConvertBack(object value, Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture)
    {
        throw new NotImplementedException();
    }
}

问题:

我将所选动物集合的 Animal.nameAnimal.age 绑定到 DataGrid 的列。但是,我也有兴趣在 DataGrid 上显示第一个组合框(即 selectedAnimalType)的 SelectedItem。例如,我希望在我的 DataGrid 上看到如下列:

| Animal Type |    Name     |   Age   |
---------------------------------------
|     pets    |   myCat 1   |    2    |
|     pets    |   myCat 2   |    4    |

petsselectedAnimalType 传递给转换器,转换器使用此信息加上 selectedAnimalCategory 得到 myCat 1myCat 2。因此,是否可以 return 来自 MultiValueConverter 的多个值,以便我看到我的 DataGrid 如上所述?

以防万一有人有兴趣查看尽可能少的 运行 代码示例,我为我的问题准备了一个小项目,您可以找到源代码 here on DropBox

撇开那个设计的怪异...

不,你不能 Convert的签名是:

Object Convert(
    Object[] values,
    Type targetType,
    Object parameter,
    CultureInfo culture
)

(MSDN)

所以你必须 return 一个对象。该对象甚至可以是一个 Tuple<string, object>,它近似于多个 return 值,但那是一个甚至 更差 的设计。

如果您想要在 DataGrid 中使用该数据,我会为您的组合框命名并进行 ElementName 绑定:

<DataGridTextColumn Header="Animal Type" 
Binding="{Binding ElementName=TypeComboBox, Path=SelectedItem}"/>

在更一般的情况下,通过命名根元素 "Root" 并执行以下操作来访问主数据上下文:

<DataGridTextColumn Header="Animal Type" 
Binding="{Binding ElementName=Root, Path=DataContext.SelectedType}"/>