菜单,工具栏,StackPanel等中的垂直分隔符控件 - 是否可能?

时间:2010-10-25 02:40:48

标签: c# wpf menu toolbar separator

我想以垂直方式使用Separator控件(让我们说在水平StackPanel中)。

在我周围搜索我发现了这个方法,但它没有使用Separator控件,而是使用了边框和矩形。 https://social.msdn.microsoft.com/forums/en-US/wpf/thread/eab865be-ad9b-45ed-b9d8-fc93f737b163

是否可以垂直方式使用Separator控件?

2 个答案:

答案 0 :(得分:109)

此外:

<Separator Style="{StaticResource {x:Static ToolBar.SeparatorStyleKey}}" />

答案 1 :(得分:33)

垂直分隔符

<Style x:Key="VerticalSeparatorStyle" 
       TargetType="{x:Type Separator}"
       BasedOn="{StaticResource {x:Type Separator}}">
    <Setter Property="Margin" Value="6,0,6,0"/>
    <Setter Property="LayoutTransform">
        <Setter.Value>
            <TransformGroup>
                <TransformGroup.Children>
                    <TransformCollection>
                        <RotateTransform Angle="90"/>
                    </TransformCollection>
                </TransformGroup.Children>
            </TransformGroup>
        </Setter.Value>
    </Setter>
</Style>

可以像这样使用

<Separator Style="{DynamicResource VerticalSeparatorStyle}" />