我有这个组合框
<ComboBox Height="30" SelectedIndex="0" Margin="5 3 5 3" Width="170" ItemsSource="{Binding WonderList}" SelectedValuePath="selectedWonder">
<ComboBox.ItemTemplate>
<DataTemplate>
<WrapPanel>
<Image Source="{Binding Path}" Height="20"></Image>
<Label Content="{Binding Name}" Style="{StaticResource LabelComboItem}"></Label>
</WrapPanel>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
我想将项目显示为图像和文本。
这是项目列表中对象的业务类
public class Wonder: INotifyPropertyChanged
{
private string name;
private string path;
public event PropertyChangedEventHandler PropertyChanged;
#region properties, getters and setters
public String Name { get; set; }
public String Path { get; set; }
#endregion
public Wonder(string name, string path)
{
this.name = name;
this.path = path;
}
protected void OnPropertyChanged(string name)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null)
{
handler(this, new PropertyChangedEventArgs(name));
}
}
}
和窗口后面的代码
public class Window1 {
public List<Wonder> WonderList;
public Window1()
{
InitializeComponent();
WonderList = new List<Wonder>();
WonderList.Add(new Wonder("Alexandria", "Resources/Images/Scans/Wonders/Alexandria.jpg"));
WonderList.Add(new Wonder("Babylon", "Resources/Images/Scans/Wonders/Babylon.jpg"));
}
}
我对这个xaml“魔法”很陌生,我想我不明白数据绑定是如何工作的,我认为ItemsSource="{Binding WonderList}"
应该使用该名称的集合(来自后面的代码)并显示它们的名称和路径,但是它显示一个空列表。
如果我Combo1.ItemsSource = WonderList;
在后面的代码中这样做(我更喜欢使用 xaml 并避免后面的代码),它会显示两个空白插槽,但仍然不知道如何显示这些项目。
你能为我指出正确的方向吗?
谢谢