多重输出的多重绑定
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
,描述如下:
- 第一个组合框项目是
"wild animals"
和 "pets"
,组合框的 SelectedItem
绑定到 ViewModel
的 selectedAnimalType
属性。
- 第二个组合框项目绑定到第一个组合框选择;即,
"cat"/"dog"
或 "lion"/"tiger"
分别对应 "pet"
或 "wild animals"
。此组合框的 SelectedItem
绑定到 ViewModel
的 selectedAnimalCategory
属性。
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.name
和 Animal.age
绑定到 DataGrid
的列。但是,我也有兴趣在 DataGrid
上显示第一个组合框(即 selectedAnimalType
)的 SelectedItem
。例如,我希望在我的 DataGrid
上看到如下列:
| Animal Type | Name | Age |
---------------------------------------
| pets | myCat 1 | 2 |
| pets | myCat 2 | 4 |
pets
由 selectedAnimalType
传递给转换器,转换器使用此信息加上 selectedAnimalCategory
得到 myCat 1
和 myCat 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}"/>
让我们考虑如下动物 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
,描述如下:
- 第一个组合框项目是
"wild animals"
和"pets"
,组合框的SelectedItem
绑定到ViewModel
的selectedAnimalType
属性。 - 第二个组合框项目绑定到第一个组合框选择;即,
"cat"/"dog"
或"lion"/"tiger"
分别对应"pet"
或"wild animals"
。此组合框的SelectedItem
绑定到ViewModel
的selectedAnimalCategory
属性。 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.name
和 Animal.age
绑定到 DataGrid
的列。但是,我也有兴趣在 DataGrid
上显示第一个组合框(即 selectedAnimalType
)的 SelectedItem
。例如,我希望在我的 DataGrid
上看到如下列:
| Animal Type | Name | Age |
---------------------------------------
| pets | myCat 1 | 2 |
| pets | myCat 2 | 4 |
pets
由 selectedAnimalType
传递给转换器,转换器使用此信息加上 selectedAnimalCategory
得到 myCat 1
和 myCat 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}"/>