水平绑定图像

本文关键字:图像 绑定 水平 | 更新日期: 2023-09-27 17:57:02

我正在开发一个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>

水平绑定图像

不。应将列表框的"项面板"设置为"水平方向的堆栈面板"。它将负责列表框中的项排列。

<ListBox>
   <ListBox.ItemsPanel>
        <ItemsPanelTemplate>
             <StackPanel Orientation="Horizontal"/>
        </ItemsPanelTemplate>
   </ListBox.ItemsPanel>
</ListBox>