我正在尝试在wpf / xaml中创建一个控件,该控件将显示一个水平的图像列表。要修复的列表框的宽度(无滚动条)。添加新项目时,现有项目会减少显示的图像数量以容纳它(实际图像不会仅减少所显示图像的数量)。该功能类似于向具有相对宽度属性(“*”)的网格添加新列,并且该列包含具有固定宽度的图像。到目前为止,这是我的代码:
<Window.Resources>
<ItemsPanelTemplate x:Key="ListBox_HorizontalItems">
<StackPanel Orientation="Horizontal" />
</ItemsPanelTemplate>
<DataTemplate x:Key="ListBox_DataTemplate">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="50" />
</Grid.ColumnDefinitions>
<Image Width="150" Source="{Binding ImageSource}" />
</Grid>
</DataTemplate>
<Style x:Key="ListBox_Style_Horizontal" TargetType="ListBox">
<Setter Property="Width" Value="150" />-->
<Setter Property="ItemTemplate" Value="{StaticResource ListBox_DataTemplate}" />
<Setter Property="ItemsPanel" Value="{StaticResource ListBox_HorizontalItems}" />
</Style>
</Window.Resources>
<Grid>
<ListBox Name="lbxImages" Style="{StaticResource ListBox_Style_Horizontal}" Width="250" Height="100" />
</Grid>
这与我的需求非常接近!但是我无法弄清楚如何在将新项目添加到列表时减少显示的图像数量。目前,添加新项目时会出现滚动条。 Incase我不是很好地解释自己这里有一些截图显示我需要的功能:
任何人都可以告诉我如何实现这一目标吗?谢谢你的帮助!
答案 0 :(得分:9)
将以下UniformGrid用作ItemsPanel:
<ItemsPanelTemplate>
<UniformGrid Columns="{Binding Path=Items.Count,RelativeSource={RelativeSource AncestorType={x:Type ListBox}}}"/>
</ItemsPanelTemplate>
禁用水平滚动:
<ListBox ScrollViewer.HorizontalScrollBarVisibility="Disabled">
修改ItemTemplate:
<DataTemplate>
<Image Source="{Binding ImageSource}"
Stretch="None"
HorizontalAlignment="Center"/>
</DataTemplate>
答案 1 :(得分:0)
我发现替换ItemsPanelTemplate不足以摆脱滚动条,因为ItemsPanelTemplate嵌入在ListBox内部的ScrollViewer中。您可能还需要删除该ScrollViewer。
我替换了整个ListBox的模板:
<Style TargetType="ListBox">
<Setter Property="Height" Value="Auto"/>
<Setter Property="Width" Value="Auto"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate>
<Border
BorderBrush="Red"
BorderThickness="1">
<UniformGrid
IsItemsHost="True"
Rows="1">
</UniformGrid>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="ItemContainerStyle">
<Setter.Value>
<Style TargetType="ListBoxItem">
<Setter Property="Width" Value="Auto"/>
<Setter Property="VerticalAlignment" Value="Center"/>
<Setter Property="VerticalContentAlignment" Value="Top"/>
<Setter Property="Height" Value="25"/>
<Setter Property="Padding" Value="5 0 5 0"/>
<Setter Property="Background" Value="Transparent" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ListBoxItem">
<Border
Background="{TemplateBinding Background}"
SnapsToDevicePixels="True">
<!-- Presenter for the UniformGrid: -->
<ContentPresenter
HorizontalAlignment="Center"
VerticalAlignment="Center"/>
</Border>
<ControlTemplate.Triggers>
<!-- triggers to indicate selection -->
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Setter.Value>
</Setter>
</Style>
此外,无需查找UniformGrid中的列数。系统只使用ListBoxItems的数量。 IsItemsHost =&#34;真&#34;我想,那是为你做的。