Separatorコントロールを垂直に使用したい(水平StackPanelで言う)。
周りを検索すると、このメソッドが見つかりましたが、セパレータコントロールを使用せず、境界線と長方形を使用しています。 https://social.msdn.Microsoft.com/forums/en-US/wpf/thread/eab865be-ad9b-45ed-b9d8-fc93f737b16
Separatorコントロールを垂直に使用することはできますか?
また:
<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}" />