How do I change the format used to display a DateTime? Columns' Bound / Source Property of a DataGridControl Bound to an ObservableCollection<MyItemClass>?
I've tried, in the Window.Loaded Event Handler, for the applicable Column, setting its:
I've tried, in the Window.Loaded Event Handler, for the applicable Column, setting its:
-
CellContentStringFormat (to "ddd MM/dd/yy hh:mm tt") which resulted in the literal "ddd MM/dd/yy hh:mm tt" (without the quotes) being displayed in all Rows.
-
DisplayedValueConverter to an IValueConverter that "Convert"(s) a DateTime? to a String of Format "ddd MM/dd/yy hh:mm tt".