我是WPF领域的新手,对于数据绑定有以下问题。
我的测试应用程序包含一个带有汽车的ListView(列:类型,速度和颜色)。在列表视图下方,有一些控件可以控制所选汽车的值。除其他外,还有一个ComboBox可以选择所选汽车的颜色。
在XAML中,ListView的初始化如下:
<ListView Grid.Row="1" Name="listView" ItemsSource="{Binding Model.Cars}" SelectedValue="{Binding Model.SelectedCar}">
<ListView.View>
<GridView>
<GridView.Columns>
<GridViewColumn Header="Type" Width="Auto" DisplayMemberBinding="{Binding Name}" />
<GridViewColumn Header="Speed" Width="Auto" DisplayMemberBinding="{Binding Speed}" />
<GridViewColumn Header="Color" Width="Auto"
DisplayMemberBinding="{Binding Color.Value}"/>
</GridView.Columns>
</GridView>
</ListView.View>
</ListView>
ItemsSource是Model.Cars,它是Car对象的ObservableCollection。 Car.Color是一个KeyValuePair(颜色,字符串),由CarCarss类的AvailableColors初始化:
public static class CarColors
{
static Random rnd = new Random();
private static Dictionary<Color, string> availableColors = new Dictionary<Color, string>
{
{ Colors.Red, "red" },
{ Colors.Green, "green" },
{ Colors.Blue, "blue" },
{ Colors.Yellow, "yellow" },
{ Colors.Brown, "brown" },
{ Colors.Silver, "silver" },
};
public static Dictionary<Color, string> GetAvailableColors()
{
return availableColors;
}
public static KeyValuePair<Color, string> GetRandomColor()
{
return availableColors.ElementAt(rnd.Next(0, availableColors.Count));
}
}
我想将颜色组合框与ListView中选定汽车的颜色进行数据绑定。我当前的XAML代码不起作用:
<ComboBox Grid.Row="1" Grid.Column="1" Margin="2"
ItemsSource="{Binding Source={StaticResource AvailableColors}}"
SelectedValuePath="Key"
DisplayMemberPath="Value"
SelectedValue="{Binding ElementName=listView, Path=SelectedValue}"/>
如何将Color ComboBox绑定到数据,以便它代表所选汽车的颜色,但其值范围来自静态CarColors词典?
答案 0 :(得分:0)
如果您的汽车颜色属性为KeyValuePair,请尝试以下操作:
<ComboBox Grid.Row="1" Grid.Column="1" Margin="2"
ItemsSource="{Binding AvailableColors}"
SelectedItem="{Binding ElementName=listView, Path=SelectedItem.Color}"
DisplayMemberPath="Value"/>
NB。任何汽车对象的color属性必须指向AvailableColors源颜色列表的元素。 即。
new Car { Name = "Ford", Speed = 180f, Color = AvailableColors.ElementAt(1)},