我正在开发一个 Windows 8 应用程序,我必须在列表视图中连续显示 4 个项目。现在有了代码,我所有的项目都填充在另一个之下。有人可以指导我在 Metro 应用 ListView 中重复列的逻辑。我的代码如下...
<ListView x:Name="ItemListView" ItemsSource="{Binding}" Margin="10,190,0,0">
<ListView.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Vertical" >
<TextBlock Text="{Binding username}" />
<TextBlock Text="{Binding value}" />
<Image Source="{Binding thumb}" />
</StackPanel>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>