Суть такова. Имеются два класса: Cart and Item:
public class Cart
{
public Item[] Items { get; set; }
public double Price { get; set; }
}
public class Item
{
public int Id { get; set; }
public string Description { get; set; }
Нужно вывести все Item's в ListBox'e по шаблону: ID: Description.
Как правильно описать шаблон ListBox?
<ListBox ItemsSource="{StaticResource cart}" Width="350" Margin="0,5,0,10">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Id}" />
<TextBlock Text=", " />
<TextBlock Text="{Binding Descritpion}" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>