vote up 0 vote down star

Hi, I have a WPF ListView with "Auto" column widths. After rendering, the column widths correctly match content, that is ok.

I need to determine the correct (rendered) DesiredSize of the ListView right after assigning to ItemsSource, prior to rendering.

The problem is that calling Measure() breaks the Auto width behavior - it resizes the columns to match header content:

alt text

listView.ItemsSource = myCollection;
// now listView.DesiredSize is 0
listView.Measure(new Size(2000, 2000));  // this breaks "Auto" widths

The only hack that comes to my mind is adding spaces to headers manually.

flag

75% accept rate

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.