-1

I have a datagrid with a datetime column. It shows both date and time but I only want the date. How can I achieve this?

Mr-RandomQC
  • 57
  • 11

1 Answers1

1

You can format the date "{Binding MyDateProperty, StringFormat=d}" where it specifies that the datetime value be expressed as a date.

ΩmegaMan
  • 29,542
  • 12
  • 100
  • 122