TravisO
TravisO

Reputation: 9550

Always show the calendar in WPF's date picker

I put a DatePicker control on my WPF application, but I don't want the calendar to only be visible when the icon is click, I want the calendar to always be visible.

I'd like to be able to do this purely in the XAML, but if I have to do it within the C# code, hey whatever works.

I'm using C# .NET 4.5

Upvotes: 0

Views: 1881

Answers (1)

Dejan Dakić
Dejan Dakić

Reputation: 2448

You can use DateTimePicker from http://wpftoolkit.codeplex.com/wikipage?title=DateTimePicker

There is property IsOpen, just set it to true.

Upvotes: 2

Related Questions