Beispiel #1
0
        private async void OnFlyOutButtonClickAsync(object sender, RoutedEventArgs e)
        {
            TaskCreationModal dialog = new TaskCreationModal();

            dialog.StartDate.Date = new DateTime(year, month, day);
            dialog.EndDate.Date   = new DateTime(year, month, day);

            await dialog.ShowAsync();
        }
Beispiel #2
0
        private async void NonCalendarOnFlyOutButtonClickAsync(object sender, RoutedEventArgs e)
        {
            TaskCreationModal dialog = new TaskCreationModal();

            await dialog.ShowAsync();
        }