I created a format with a date. It's XML code is very easy:
<DatePicker x:Name="data" Grid.Row="4" TextColor="Silver" MinimumDate="12/12/1900"/>
But I need to save this date in SQL, but the format is wrong. The format of SQL is yyy-mm-gg while the format of datepicker is mm-gg-yyyy.
How can i change this? thanks a lot