I want to Change the Format of date selected in DateTimePicker in WPF Application
Try This
private void UserControl_Loaded(object sender, RoutedEventArgs e) { DateLabel.Content = Convert.ToDateTime(datePicker1.Text).ToString("dd-MM-yyyy"); }