ヘッダーが-90度回転するエキスパンダーがあります。
<Expander Name="exProduct" Grid.Column="1" ExpandDirection="Left"
HorizontalAlignment="Right" VerticalAlignment="Stretch">
<Expander.Header>
<TextBlock Text="Add Product" FontSize="18"
<TextBlock.LayoutTransform>
<RotateTransform Angle="-90"/>
</TextBlock.LayoutTransform>
</TextBlock>
</Expander.Header>
このようなものを使用するにはどうすればよいですか?ヘッダーは-90度回転します:
<Window.Resources>
<Style x:Key="ExpanderEx" TargetType="Expander">
<Setter Property="Header" Value="Show"/>
<Style.Triggers>
<Trigger Property="IsExpanded" Value="True">
<Setter Property="Header" Value="Hide"/>
</Trigger>
</Style.Triggers>
</Style>
</Window.Resources>
<Expander Style="{StaticResource ExpanderEx}" >
<StackPanel>
<Button Width="100" Height="50"/>
</StackPanel>
</Expander>