The default Expander
's icon position is fixed when expanded/collapsed. Now I need to make the edge of Content
's position fixed and to move the icon.
I tried:
<Expander HorizontalAlignment="Left" ExpandDirection="Right" FlowDirection="RightToLeft">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid Grid.Column="0">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<TextBlock Grid.Column="0" Text="123"/>
<TextBlock Grid.Column="1" Text="abc"/>
</Grid>
</Grid>
</Expander>
It is close to what I want except that I got the icon direction backwards. Is it the proper way or how to fix it? Thanks.
Changing the flow direction will also affect other parts of the control like the icon that is flipped. Instead create a copy of the default control template using Blend or Visual Studio and adapt it.
There is a lot of XAML code that is extracted, but you only need to adapt small portions of it. The other styles are only needed, because they are referenced statically by name. Put all this code in a resource dictionary of your choice that is in scope.
The only changes are in the last style
ExpanderStyle
. There is aDockPanel
that contains the icon and header, which are displayed in aToggleButton
and the content that is displayed in aContentPresenter
. I just flipped theDockPanel.Dock
values in those controls and the triggers.You can apply the style like this without setting the flow direction.