I have a DataGrid Control which is bound to a SQL Table.
The XAML Code is:
You can set it programmatically:
var col = new DataGridTextColumn(); col.Width = new DataGridLength(100, DataGridLengthUnitType.Star); Grid1.Columns.Add(col);