Jerry Nixon
Jerry Nixon

Reputation: 31831

Where is the date picker in WinRT XAML?

I see the date picker control in WinRT JavaScript/HTML5. Where is that control for XAML?

Upvotes: 10

Views: 7741

Answers (7)

Jerry Nixon
Jerry Nixon

Reputation: 31831

There is no date picker control in the standard Windows 8.0 toolbox. However, look at the Callisto for many handy WinRT XAML controls, including the date picker control. https://github.com/timheuer/Callisto

Upvotes: 4

Patrick Finnigan
Patrick Finnigan

Reputation: 1967

Note that Win 8.1 includes built-in XAML controls for DatePicker, TimePicker. So if you retarget your project to target Win 8.1 you will now get these controls.

retargeting: http://msdn.microsoft.com/en-us/library/windows/apps/dn263114.aspx

Upvotes: 1

Mikhail Payson
Mikhail Payson

Reputation: 921

You can inspect our package of WinRT components. It contains date picker component as well as a lot of other UI components: radial and plain menus, color picker, rating controls and so on. And it's totally free btw ;).

Upvotes: 2

Jay Borseth
Jay Borseth

Reputation: 2003

The best one I've found (complete with templating and xaml friendly formatting options) is:

https://github.com/jasonmitchell/WinRT-XAML-DatePicker

Upvotes: 4

Vince Ricosti
Vince Ricosti

Reputation: 519

You can find the following control that looks like the same as the javascript one: https://mytoolkit.codeplex.com/SourceControl/changeset/view/25356#181302.

Upvotes: 0

dcastro
dcastro

Reputation: 68730

Syncfusion's WinRT Studio (Beta) includes a very, very good DatePicker and it's free to use.

http://www.syncfusion.com/products/winrt

Upvotes: 0

LZH
LZH

Reputation: 785

At the moment, there isn't a official control for datetime picker in XAML. but it seem that microsoft will be coming up with one in the future. msdn

Upvotes: 0

Related Questions