Expander header is not stretch
See original GitHub issueThere is no way to made full width expander header, without control template modification.
Steps to reproduce the behavior:
- Apply fluent style
- Put expander
- Add header content with right alignment
- Header is always aligned to left
<Expander>
<Expander.Header>
<Grid ColumnDefinitions="*, Auto">
<TextBlock Text="{Binding ComponentType}" />
<Button Grid.Column="1" Padding="0">
<Image Source="{StaticResource AppMinus}" Height="30" />
</Button>
</Grid>
</Expander.Header>
<ContentControl Content="{Binding}" />
</Expander>
Expected behavior Content aligned to right
Screenshots
Actual result
Expected result:
Additional context This is probably because of following Grid in Expander toggle button template. https://github.com/AvaloniaUI/Avalonia/blob/25fe106c235ebb5c6260af5a13d6a79b633c5b82/src/Avalonia.Themes.Fluent/Controls/Expander.xaml#L90
I think it should have ColumnDefinitions="Auto,*"
. Should I make a pull request with this fix?
Issue Analytics
- State:
- Created 3 years ago
- Comments:11 (8 by maintainers)
Top Results From Across the Web
WPF Expander.Header horizontal stretch
Expander header content presenter has horizontal alignment set to Left . You can change it to Stretch using OneWayToSource binding of ...
Read more >Stretching Content in an Expander Header | Josh Smith on WPF
Note: This technique makes the header element wider than the available space (it does not subtract out the width of the Expander's expansion ......
Read more >C# – WPF Expander.Header horizontal stretch
Expander header content presenter has horizontal alignment set to Left . You can change it to Stretch using OneWayToSource binding of HorizontalAlignment (which ......
Read more >[Solved]-How can I make a WPF Expander Stretch?
The accepted answer draws outside the control because the header content is in one column and the expander button is in the first....
Read more >Stretching the WinUI 3 Expander control
In this article we take the new WinUI 3 Expander control through a couple ... the Header width is not aligned to the...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Btw. It’s a problem with default expander style. For fluent you can avoid it without changing whole template:
But for convenience I will change default value anyway. It makes more sense.
The best option would be to adapt Expander style from WinUI repo but only for Fluent theme. For now though your solution with ColumnDefinition looks good to me. PRs are welcome.