为什么在WPF列表框中的ItemContainerStyle状态中没有定义任何内容?

时间:2011-07-15 09:56:56

标签: .net wpf xaml styles wpf-4.0

当我编辑模板并进入ItemContainerStyle模板时,状态被定义为Unselected,Selected,MouseOver等。但实际上没有对这些状态进行任何操作。这种行为是否正常?我使用过Silverlight Listbox。在其中,ItemContainerStyle确实定义了所有状态,并且更改了许多属性。 WPF列表框有点混乱。当我编辑ItemContainerStyle时,看到这是xaml:

<Style x:Key="ListBoxItemContainerStyle" TargetType="{x:Type ListBoxItem}">
            <Setter Property="Background" Value="Transparent"/>
            <Setter Property="HorizontalContentAlignment" Value="{Binding HorizontalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}"/>
            <Setter Property="VerticalContentAlignment" Value="{Binding VerticalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}"/>
            <Setter Property="Padding" Value="2,0,0,0"/>
            <Setter Property="Template">
                <Setter.Value>
                    <ControlTemplate TargetType="{x:Type ListBoxItem}">
                        <Border x:Name="Bd" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" Padding="{TemplateBinding Padding}" SnapsToDevicePixels="true" >
                            <VisualStateManager.VisualStateGroups>
                                <VisualStateGroup x:Name="CommonStates">
                                    <VisualState x:Name="Normal"/>
                                    <VisualState x:Name="MouseOver"/>
                                    <VisualState x:Name="Disabled"/>
                                </VisualStateGroup>
                                <VisualStateGroup x:Name="SelectionStates">
                                    <VisualState x:Name="Unselected"/>
                                    <VisualState x:Name="Selected"/>
                                    <VisualState x:Name="SelectedUnfocused"/>
                                </VisualStateGroup>
                            </VisualStateManager.VisualStateGroups>
                            <ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
                        </Border>

                    </ControlTemplate>
                </Setter.Value>
            </Setter>
        </Style>

这里只提供了一个ContentPresenter。我想在鼠标结束时更改渐变。我还想缩放项目的大小。我该怎么做?

提前致谢:)

1 个答案:

答案 0 :(得分:0)

在WPF中使用状态时,您必须在所需状态内定义故事板并将其更改为动画。 如果要更改项容器的某些属性,例如,在Borders样式内的IsMouseOver属性上使用Trigger可能更简单。