In the following .NET 3.5 XAML, if you drag the column width of the \'Day\' column wider, the ListView nicely grows to account for this. If you then drag the column width narro
In general, all WPF ItemsControls are "grow-only", meaning that we do the initial layout pass and subsequently the control will only resize larger if the content changes. The reason we don't resize smaller by default is that it would require an expensive measure and arrange pass, which would negatively impact performance
ref: codeplex thread