0

我正在开发一个 Windows Phone 8 应用程序。

我正在尝试将一些图像数据绑定到 ListBox 中,但它以垂直方式显示:

<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
    <ListBox x:Name="picList">
        <ListBox.ItemTemplate>
            <DataTemplate>
                <StackPanel Orientation="Horizontal">
                    <Image Source="{Binding picture}" Height="80" Width="80"/>
                </StackPanel>
            </DataTemplate>
        </ListBox.ItemTemplate>
    </ListBox>
</Grid>
4

1 回答 1

0

没有。您应该将 ListBox 的 ItemsPanel 设置为具有水平方向的 StackPanel。它将负责 ListBox 中的 Items 排列。

<ListBox>
   <ListBox.ItemsPanel>
        <ItemsPanelTemplate>
             <StackPanel Orientation="Horizontal"/>
        </ItemsPanelTemplate>
   </ListBox.ItemsPanel>
</ListBox>
于 2013-02-01T09:28:14.270 回答