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.

Support ListBox.HorizontalContentAlignment

See original GitHub issue

Vanilla WPF has ListBox.HorizontalContentAlignment. In the following scenario:

xaml:

<ListBox ItemsSource="{Binding Items}">
    <ListBox.ItemTemplate>
        <DataTemplate>
            <TextBlock Text="{Binding .}" MouseDown="TextBlock_MouseDown"/>
        </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox>

xaml.cs:

private void TextBlock_MouseDown(object sender, MouseButtonEventArgs e)
{
    Debug.WriteLine("Mouse Down!");
}

The “Mouse Down!” text will be printed only if the text in the TextBox is clicked, as the TextBox “shrinks” its bounds to the size of the text. But, if we add HorizontalContentAlignment="Stretch" to the ListBox declaration, then the TextBox will fill the horizontal space and accept the click event anywhere on the ListBoxItem (even outside the text).

Avalonia does not currently support ListBox.HorizontalContentAlignment - the ask is to add it. Is there currently a workaround? Maybe using styles?

Issue Analytics

  • State:open
  • Created 3 years ago
  • Comments:8 (4 by maintainers)

github_iconTop GitHub Comments

2reactions
jp2masacommented, Jan 29, 2021

I think it works if you set Background="Transparent" on the TextBlock and this style:

<Style Selector="ListBoxItem">
    <Setter Property="HorizontalContentAlignment" Value="Stretch" />
</Style>

Also, this seems to be a problem on fluent theme only:

https://github.com/AvaloniaUI/Avalonia/blob/d53920bc99fab3b0aaeb8c2f065096c071d2c388/src/Avalonia.Themes.Fluent/Controls/ListBoxItem.xaml#L21

Default theme doesn’t set HorizontalContentAlignment (I think the default is Stretch).

0reactions
maxkatz6commented, Jan 29, 2021

If ListBoxItem is already stretched, you need to check the same property on your CheckBox. I am also not sure right now if it has Transparent (clickable) background.

Read more comments on GitHub >

github_iconTop Results From Across the Web

ListBoxItem HorizontalContentAlignment To Stretch Across ...
I ran into the same in XAML and it drove me nuts wondering why my TextBlock was not fully colored across the width....
Read more >
How to align items of ListBoxItem's DataTemplate?
Here in the Balance view everything is aligned properly since I've set fixed width for the columns of Grid inside DataTemplate.
Read more >
ListBoxEdit - How to horizontally stretch custom content ...
Hello,. i kinda made it work. You have to set HorizontalContentAlignment directly in the ListBoxEdit. Though i realized stretch wasnt what i ...
Read more >
Silverlight (and WPF): How to make items stretch horizontally ...
A quick thought would be to assign HorizontalContentAlignment property to ... We need to specify this property for the ListBoxItem that ...
Read more >
The ListBox control - The complete WPF tutorial
Please notice the HorizontalContentAlignment property that I set to Stretch on the ListBox. The default content alignment for a ListBox item is Left, ......
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