Wpf 扩展器垂直对准

Wpf 扩展器垂直对准,wpf,xaml,layout,expander,Wpf,Xaml,Layout,Expander,嗨,我想让这个扩展器与箭头垂直对齐,而不是水平对齐。它看起来像这样: 开放式: 关闭: <StackPanel> <StackPanel.Triggers> <EventTrigger RoutedEvent="Expander.Expanded" SourceName="expander"> <EventTrigger.Actions>

嗨,我想让这个扩展器与箭头垂直对齐,而不是水平对齐。它看起来像这样:

开放式:

关闭:

    <StackPanel>
        <StackPanel.Triggers>
            <EventTrigger RoutedEvent="Expander.Expanded" SourceName="expander">
                <EventTrigger.Actions>
                    <BeginStoryboard>
                        <Storyboard>
                            <DoubleAnimation From="0" To="1" Duration="0:0:0.25" Storyboard.TargetName="listBox" Storyboard.TargetProperty="(FrameworkElement.LayoutTransform).(ScaleTransform.ScaleY)"/>
                        </Storyboard>
                    </BeginStoryboard>
                </EventTrigger.Actions>
            </EventTrigger>
        </StackPanel.Triggers>
        <Expander x:Name="expander" Header="Expander" Expanded="expander_Expanded">
            <ListBox x:Name="listBox">
                <ListBoxItem Content="ListBoxItem" />
                <ListBoxItem Content="ListBoxItem" />
                <ListBoxItem Content="ListBoxItem" />
                <ListBox.LayoutTransform>
                    <ScaleTransform ScaleX="1" ScaleY="0"/>
                </ListBox.LayoutTransform>
            </ListBox>
        </Expander>
    </StackPanel>
更改。更改