Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does a WPF .NET 3.0 Date Picker exist?

I am trying to find a WPF 3.0 date picker control. What can you recommend and where is it?

like image 970
user38349 Avatar asked Dec 10 '22 21:12

user38349


2 Answers

The WPF Toolkit contains a DatePicker control.

Edit: I forgot to add a link to the DatePicker Walkthrough for info how to use it.

Update: There is no DatePicker control from Microsoft that runs on .Net 3.0. You can either buy a third party DatePicker control, like Telerik's DatePicker for example, or you can go with start with an open source DatePicker implementation and roll your own. Disclaimer: I have not used either of the third party DatePicker controls, so I can't vouch about their quality.

like image 186
Franci Penov Avatar answered Dec 25 '22 21:12

Franci Penov


There's a free date picker control in Kevin's WPF bag-o-tricks at http://j832.com/bagotricks/

And in MS WPF toolkit has Franci Penov said.

I've used the bag-o-tricks one in the past, it works but it isn't perfect.

like image 41
Nir Avatar answered Dec 25 '22 20:12

Nir