如何水平设置图像。我尝试使用列表框,它甚至垂直滚动ScrollViewer.VerticalScrollBarVisibility ="已禁用"有没有办法设置图像或任何控件使用?,请帮助我。
答案 0 :(得分:0)
您必须先设置ItemPanelTemplate
,然后尝试此操作
<ListBox x:Name="myLLS" ScrollViewer.HorizontalScrollBarVisibility="Visible">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<!-- here is where we change stuff -->
<StackPanel Orientation="Horizontal"></StackPanel>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<Border BorderBrush="Red" BorderThickness="1,1,1,1">
<StackPanel Height="100" Background="#FF00044D">
<!-- Your Image collection from your ViewModel -->
</StackPanel>
</Border>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>