我使用此代码在ListBox
以下位置创建XAML
:
<ListBox Margin="20,96,20,20" ItemsSource="{Binding Items}" Name="ResultsListBox" SelectionChanged="ResultsListBox_SelectionChanged">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding}" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
这是我插入字符串的代码(列表是List
字符串的一个):
ResultsListBox.ItemsSource = list;
现在我希望可以使用包含以下项的数组创建此列表框: 字符串名称 字符串 id 字符串 imageurl
我可以将这个组合到列表中吗?