示例#1
0
        private async void CancelMeeting(string id)
        {
            await GraphService.CancelEvent(id);

            int pos = Meetings.IndexOf(x => x.Id == id);

            Meetings.RemoveAt(pos);

            // Make sure we have correct indexes
            GetEventsForSelectedDate();
        }