vote up 0 vote down star

I have a ListBox in a PopupControl. Problem is that while scrolling, Popup resizes to fit the actual widest element. How to avoid this resizing and adjust automatically to the widest element in the whole list? I tried to put it in a Grid but without succes.

flag

Are you able to calculate how wide a particular ListBoxItem will be, based on its content? – GreenReign Jul 18 at 2:20

3 Answers

vote up 0 vote down check

If you want to keep virtualizing on, you can set the Popup.Width to a constant.

Of course, to pick the right constant, you'll have to calculate (or at least guess) how wide each ListBoxItem will be, and pick the max. ... Usually it's not too hard to get a rough guess, based on your content.

link|flag
vote up 0 vote down

Most WPF UIElement controls have a Width property which can be set to "Auto" so they will take up as much space as their widest element.

link|flag
I don't think that works in this case, as nothing has determined what the widest element is if virtualizing is turned on. – GreenReign Jul 17 at 8:05
Exactly. With virtualization ON it won't work – stefan Jul 17 at 10:15
vote up 0 vote down

ok this is the solution: Adding this property

<ListBox VirtualizingStackPanel.IsVirtualizing="False"

The resizing stops because now the Panel contains all elements and the width is adjusted respecting the widest one. With Virtualizing Panel, it's only a part of items displayed and the ListBox adjusts the widht to the actual visible widest element.

Disadvantade is, that we do not use Virtualizing Panel anymore (which is default on)

link|flag
But this solution is too slow for many items! – stefan Jul 17 at 10:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.