这个问题的大多数答案都说要做这样的事情:
<ListBox Margin="47,241,53,264">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal" />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<Image Height="100" Width="100" Source="/ApplicationIcon.png"/>
<Image Height="100" Width="100" Source="/ApplicationIcon.png"/>
<Image Height="100" Width="100" Source="/ApplicationIcon.png"/>
<Image Height="100" Width="100" Source="/ApplicationIcon.png"/>
<Image Height="100" Width="100" Source="/ApplicationIcon.png"/>
</ListBox>
然而,这不会启用水平滚动。
答案 0 :(得分:4)
您没有将可见性设置为滚动条
<ListBox Margin="47,241,53,264"
ScrollViewer.VerticalScrollBarVisibility="Visible">
.
.
.
</ListBox>
应该这样做。