Surprisingly, Visual Studio for Windows 8 XAML does not come with either a date or a time picker. Not to worry, we’ve got you covered. 
The RadControls For Metro suite of controls includes a very flexible DatePicker and TimePicker control that I’ll illustrate in this posting.
To get started, be sure to add a reference to the RadControls for Metro to your application.
As usual, we’ll begin with the data. This time the data is very simple. We start by creating a class representing a hotel or conference reservation,
public class Reservation
{
public DateTime ArriveDate { get; set; }
public DateTime DepartDate { get; set; }
}
Notice that the two properties are of...