WPF DatePicker default to today's date

WpfDatepicker

Wpf Problem Overview


WPF DatePicker always show 'Show Calendar' by default. I want it to show current/todays date. How do I do that. I tried doing something like the below in the constructor but it won't work,

datePicker.SelectedDate = DateTime.Now.Date;

or

datePicker.DisplayDate = DateTime.Now.Date;

Wpf Solutions


Solution 1 - Wpf

please try with this ....

<my:DatePicker SelectedDate="{x:Static sys:DateTime.Now}"/>

add this reference

xmlns:sys="clr-namespace:System;assembly=mscorlib"

Solution 2 - Wpf

The below works for me. (dpDate is my DatePicker control)

public MainWindow()
{
    InitializeComponent();
    dpDate.SelectedDate = DateTime.Today;            
}

Solution 3 - Wpf

Couple of options...

You could copy the entire style for the DatePicker control and edit the XAML and use that as the default resource making the TargetType DatePicker which will force it to be used across the application.

You could also edit the style locally and place your own TextBox in the style and hide the DatePickerTextBox and then setup the binding appropriately.

Some in depth conversation here with a pretty good explanation by ericf at the top.

Solution 4 - Wpf

You can use the DatePicker's Text property to get or set the date http://msdn.microsoft.com/en-us/library/system.windows.controls.datepicker.text.aspx

I'm developing with IronPython and do it as so

self.root.FindName('DatePicker').Text = time.strftime('%m/%d/%Y')

Solution 5 - Wpf

the issue is you are attempting to access date with time. that doesn't work.

the date today is represented in "DateTime.Today"

Solution 6 - Wpf

datePicker.SelectedDate=DateTime.Now;

Solution 7 - Wpf

If you need to set the date programmatically (or in the code behind) you could try...

datePicker.Text = DateTime.Now.Date.ToString();

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestiondeveloperView Question on Stackoverflow
Solution 1 - WpfKishore KumarView Answer on Stackoverflow
Solution 2 - WpfleoinliosView Answer on Stackoverflow
Solution 3 - WpfAaron McIverView Answer on Stackoverflow
Solution 4 - WpfKennethView Answer on Stackoverflow
Solution 5 - WpfShahar ZolehaView Answer on Stackoverflow
Solution 6 - Wpfuser18679728View Answer on Stackoverflow
Solution 7 - WpfP_FitzView Answer on Stackoverflow