I\'m using the latest WPF toolkit, specifically the DatePicker. Everything works fine, but when no value is provided, the default \'SHOW CALEND
You could also do this:
Add a textbox and a datepicker to your form with the following settings:
In your window.xaml:
And in your window.xaml.cs:
private void datePicker_SelectedDateChanged(object sender, SelectionChangedEventArgs e)
{
textBox.Text = datePicker.SelectedDate.Value.ToString("dd.MM.yyyy");
}
The result looks like this: klick