我想以垂直方式使用Separator控件(比如說在一個水平的StackPanel中)。菜單,工具欄,StackPanel等中的垂直分離器控制 - 是否有可能?
搜索我發現這個方法,但它不使用Separator控件,而是使用邊框和矩形。 http://social.msdn.microsoft.com/forums/en-US/wpf/thread/eab865be-ad9b-45ed-b9d8-fc93f737b163
是否可以垂直使用分隔符控件?
我想以垂直方式使用Separator控件(比如說在一個水平的StackPanel中)。菜單,工具欄,StackPanel等中的垂直分離器控制 - 是否有可能?
搜索我發現這個方法,但它不使用Separator控件,而是使用邊框和矩形。 http://social.msdn.microsoft.com/forums/en-US/wpf/thread/eab865be-ad9b-45ed-b9d8-fc93f737b163
是否可以垂直使用分隔符控件?
也可用於:
<Separator Style="{StaticResource {x:Static ToolBar.SeparatorStyleKey}}" />
豎隔
<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}" />
美麗。謝謝。 – usefulBee 2015-12-03 19:17:47
這很簡單,容易!這應該被標記爲答案! – psulek 2013-01-11 08:08:29
優雅的解決方案 – 2013-02-20 09:58:21