How to remove the extra column of DataGrid using wpf?
How to remove the extra column of DataGrid using wpf?
2512
08-Aug-2013
shreesh chandra shukla
09-Aug-2013dataGrid1.Columns[0].Width = new DataGridLength(1, DataGridLengthUnitType.Star);
thanks