I got the following XAML code:
<ListBox ItemsSource="{Binding Languages}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<Image Source="{Binding LanguageIcon}" />
<Label Content="{Binding LanguageName}" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
and in the model class is
class Language
{
public string LanguageName;
public ImageSource LanguageIcon;
}
and my modelview class contains a
public List<Language> Languages;
which gets filled e.g. with
Languages.Add(new Language("A",new BitmapImage(new Uri("Resources/a.ico", UriKind.Relative))));
Languages.Add(new Language("B",new BitmapImage(new Uri("Resources/b.ico", UriKind.Relative))));
...when I run the project, all my language names are shown in the list, but not the icons... why and how can I make them become shown? (I am sure that the resources do exist; the BitmapImages don't throw errors)
Thanks in advance :-)