Example #1
0
        /// <summary>
        /// Sends event remove request to Exchange service
        /// </summary>
        async void ExecuteDeleteCommandAsync()
        {
            try
            {
                if (await MessageDialogHelper.ShowYesNoDialogAsync(String.Format("Are you sure you want to delete the event '{0}'?", this._selectedEvent.DisplayString), "Confirm Deletion"))
                {
                    if (!String.IsNullOrEmpty(this._selectedEvent.Id))
                    {
                        await _calendarOperations.DeleteCalendarEventAsync(this._selectedEvent.Id);
                    }

                    //Removes event from bound observable collection
                    TodaysEvents.Remove((EventViewModel)_selectedEvent);
                }
            }
            catch (Exception)
            {
                LoggingViewModel.Instance.Information = "We could not delete your calendar event";
            }
        }