How to remove the extra column of DataGrid using wpf ?
How to remove the extra column of DataGrid using wpf? Anonymous User 2587 08 Aug 2013 How to remove the extra column of DataGrid using wpf?
dataGrid1.Columns[0].Width = new DataGridLength(1, DataGridLengthUnitType.Star);
thanks