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.

How can we set the width of each column according to the length of its content in a ListView? I hate having to keep changing the size of each column at runtime. Is there an MSDN doc that has this info? I can't find where I should be looking

Thank you

share|improve this question

3 Answers

up vote 1 down vote accepted

Review the ColumnHeader.AutoResize() method. Call it after populating the Items, the form's OnLoad() method is the first chance.

share|improve this answer
Thanks, @Hans P. – anon271334 Apr 5 '11 at 20:47
The Timer on S/O is really giving me the s s. I had one minute left to wait, and after that minute, it said 46seconds left, so I waited 46seconds. Then it said 10seconds left. :@ – anon271334 Apr 5 '11 at 20:51
Thanks for waiting! – Hans Passant Apr 5 '11 at 20:53
LOL you're very welcome @Hans. It's not the "wait" that jerks me, it's the fact that the timer lied to me. :) – anon271334 Apr 6 '11 at 0:38

Use both resizing options after populating the list:

myListView.AutoResizeColumns(ColumnHeaderAutoResizeStyle.ColumnContent);
myListView.AutoResizeColumns(ColumnHeaderAutoResizeStyle.HeaderSize);

This will size columns to the width of column data, and then restore minimum width for column headers without completely trashing the original auto-sizing.

share|improve this answer

I got it:

viewer.AutoResizeColumns(ColumnHeaderAutoResizeStyle.ColumnContent);
share|improve this answer
1  
But what if the column is blank? One of the common problems with column auto-resizing is that, although ideally it would size according to the content with a minimum width of the column header, the auto-size properties force an empty column to be about two pixels in width. – Justin Satyr Apr 5 '11 at 20:42
Yeah, @Justin, I agree with you. I just realised that. What I did was resize according to content, and when I know that the contents of the columns is not likely to be wider than the column headers themselves, I just resize according to the header. But still, that's not the most desirable way of doing it. – anon271334 Apr 6 '11 at 0:43
This is the problem I'm having. I want something like "resize by header, then by content ONLY if content is wider than the header". – crdx Jun 11 '12 at 12:11

Your Answer

 
discard

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