This question is locked. New answers and comments are not allowed.
Hi,
I have not been able to set the Column Widths of my data grid.
<my:RadDataGrid x:Name="grdContacts" SelectionChanged="grdContacts_SelectionChanged" AutoGenerateColumns="False" >
<my:RadDataGrid.Columns>
<my:DataGridTextColumn PropertyName="FullName" Width="250"/>
<my:DataGridTextColumn PropertyName="Phone1" Header="Phone" Width="120"/>
<my:DataGridTextColumn PropertyName="Status" Width="60"/>
<my:DataGridTextColumn PropertyName="RecentNote" Header="Recent Note" />
</my:RadDataGrid.Columns>
</my:RadDataGrid>
All the columns are equally spaced.
Any solution?