question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Expander header is not stretch

See original GitHub issue

There is no way to made full width expander header, without control template modification.

Steps to reproduce the behavior:

  1. Apply fluent style
  2. Put expander
  3. Add header content with right alignment
  4. 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 image

Expected result: image

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:closed
  • Created 3 years ago
  • Comments:11 (8 by maintainers)

github_iconTop GitHub Comments

1reaction
maxkatz6commented, Feb 28, 2022

Btw. It’s a problem with default expander style. For fluent you can avoid it without changing whole template:

  <Style Selector="Expander /template/ ToggleButton#ExpanderHeader">
    <Setter Property="HorizontalContentAlignment" Value="Stretch" />
  </Style>

But for convenience I will change default value anyway. It makes more sense.

1reaction
maxkatz6commented, Jan 12, 2021

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.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found