February 2015
Intermediate to advanced
768 pages
26h 24m
English
The source app can launch the calendar with a call to the static AppoinmentManager.ShowTimeFrameAsync method from the Windows.ApplicationModel.Appointments namespace. For example:
// Show the calendar for today await AppointmentManager.ShowTimeFrameAsync( DateTimeOffset.Now, TimeSpan.FromDays(1)); // Show the calendar for this week await AppointmentManager.ShowTimeFrameAsync( DateTimeOffset.Now, TimeSpan.FromDays(7));
The only requirement is that the source app must be visible at the time of this call.
To show the appointment flyout, you call AppointmentManager.ShowAddApointmentAsync, which looks a lot like ContactManager.ShowContactCard. It expects an Appointment ...
Read now
Unlock full access