We have a gridview in a c# winapp that keeps on showing the dates in the US format, and we would like to use the local PC's date format. How can we change it:
myDataTable.Columns.Add("Time", typeof(DateTime));
myGrid.DataSource = myDataTable;
myGrid.Columns["Time"].DisplayFormat.FormatString = "g";