Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a ListView that contains many items and am trying to set the column widths to auto so that they auto-expand to the width of the longest string in the column. At first, it appeared to work, but as I scrolled down the list, I noticed that some of the longer strings were cut short because the column didn't auto-expand enough. Then it occurred to me that setting the width to auto seems to calculate the width based on the column values visible on the grid at the time. So, when I scroll down to rows containing longer strings for a particular column, I can double-click the column divider to have it expand further. This behavior doesn't seem right.

How can I get the column to expand to the length of the longest string from the start?

share|improve this question

1 Answer

up vote 5 down vote accepted

The reason is that virtualization prevents some items from being generated, and then they are not considered for the calculation of the width.

So you can switch off the virtualization for the ListView with adding this to it ->

<ListView x:Name="lv" ScrollViewer.CanContentScroll="False">

But be careful it can slow down your app, if you have a lot of items, as they all will be generated at startup.

share|improve this answer
It worked perfectly. My collection is fairly lightweight, so it's not a big performance issue. Even if it were, it'd just be the initial load, so it's all good. Thanks – oscilatingcretin Jun 10 '11 at 15:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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