This question is locked. New answers and comments are not allowed.
Hi,
When column has set width property to "*" than user cannot decrease a size of it but can enlarge. Is it by design? I think that user should be able to change size of this column in both direction.
When column has set width property to "*" than user cannot decrease a size of it but can enlarge. Is it by design? I think that user should be able to change size of this column in both direction.
<UserControl x:Class="tmpTelerikGridColumnWidthBug.MainPage" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="400"> <telerik:RadGridView > <telerik:RadGridView.Columns> <telerik:GridViewColumn Header="Column1" /> <telerik:GridViewColumn Header="Column2" Width="*"/> <telerik:GridViewColumn Header="Column3"/> </telerik:RadGridView.Columns> </telerik:RadGridView> </UserControl>