<ListBox x:Name="imgList" Width="Auto" Height="Auto" Margin="0" ScrollViewer.VerticalScrollBarVisibility="Disabled" ItemsSource="{Binding}"> <ListBox.ItemsPanel> <ItemsPanelTemplate> <WrapPanel IsItemsHost="True" /> </ItemsPanelTemplate> </ListBox.ItemsPanel> <ListBox.ItemTemplate > <DataTemplate> <Image Source="{Binding ImagePath}"/> </DataTemplate> </ListBox.ItemTemplate> </ListBox> 关键代码: 1.ScrollViewer.VerticalScrollBarVisibility="Disabled"<