代码之家  ›  专栏  ›  技术社区  ›  Miral

约束WPF列表框中的项目高度,带指示器

  •  0
  • Miral  · 技术社区  · 14 年前

    通过使用样式设置ListBoxItem容器的MaxHeight,我已经很容易地做到了这一点。

    这是我第一次尝试:

    <Style x:Key="LogContainerStyle" TargetType="{x:Type ListBoxItem}">
        <Setter Property="MaxHeight" Value="64" />
        <EventSetter Event="MouseDoubleClick" Handler="LogEntry_MouseDoubleClick" />
    </Style>
    <DataTemplate x:Key="LogTemplate">
        <Grid>
            <TextBlock Text="{Binding Message}" />
            <TextBlock x:Name="More" Text="(more)"
                       HorizontalAlignment="Right" VerticalAlignment="Bottom"
                       Foreground="DarkGray" Visibility="Collapsed" />
        </Grid>
        <DataTemplate.Triggers>
            <Trigger ... height capped at MaxHeight? ...>
                <Setter TargetName="More" Property="Visibility" Value="Visible" />
            </Trigger>
        </DataTemplate.Triggers>
    </DataTemplate>
    

    但我不知道怎么写触发器。欢迎选择。

    1 回复  |  直到 14 年前
        1
  •  1
  •   ASanch    14 年前

    请尝试下面的代码。我设置了ListBoxItem.MaxHeight文件到99。然后,我在DataTemplate中添加了一个触发器,用于检查模板中根元素的实际高度(即下面的“bd”),如果是99,则更改BorderBrush。希望这有帮助。

    <Window x:Class="WpfApplication1.MainWindow"
            xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
            xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
            xmlns:local="clr-namespace:WpfApplication1"
            xmlns:sys="clr-namespace:System;assembly=mscorlib"
            ShowActivated="False"
            Title="MainWindow" Height="350" Width="525">
        <ListBox x:Name="lb">
            <ListBox.ItemsSource>
                <x:Array Type="{x:Type sys:Double}">
                    <sys:Double>250</sys:Double>
                    <sys:Double>100</sys:Double>
                    <sys:Double>50</sys:Double>
                    <sys:Double>25</sys:Double>
                    <sys:Double>99</sys:Double>
                    <sys:Double>120</sys:Double>
                </x:Array>
            </ListBox.ItemsSource>
            <ListBox.ItemContainerStyle>
                <Style TargetType="ListBoxItem">
                    <Setter Property="MaxHeight" Value="99"/>
                </Style>
            </ListBox.ItemContainerStyle>
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <Border x:Name="bd" BorderBrush="Black" BorderThickness="1">
                        <TextBlock Text="{Binding}" Height="{Binding}" Background="LightGray"/>
                    </Border>
                    <DataTemplate.Triggers>
                        <Trigger SourceName="bd" Property="ActualHeight" Value="99">
                            <Setter TargetName="bd" Property="BorderBrush" Value="Red"/>
                        </Trigger>
                    </DataTemplate.Triggers>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>
    </Window>