Пример #1
0
 public ShellViewModel()
 {
     DisplayName            = "Sign";
     _startHoursItems       = new StartHours();
     _endHoursItems         = new EndHours();
     _windowManager         = new WindowManager();
     _calendarServiceClient = new CalendarServiceClient();
     StartHourIndex         = 0;
     EndHourIndex           = 0;
     EnableAddUser          = false;
 }
Пример #2
0
        public CalendarPage()
        {
            InitializeComponent();

            client =
                new CalendarServiceClient(
                    GetBinding(),
                    GetEndpointAddress("Calendar"));

            client.GetMyCalendarItemsCompleted +=
                (o1, e1) =>
            {
                HideProgress();

                if (e1.Error != null)
                {
                    if (e1.Error.GetType() == typeof(FaultException <AuthenticationFault>))
                    {
                        GetAuthenticationToken(
                            new Action(
                                () =>
                        {
                            client.GetMyCalendarItemsAsync(Settings.CachedAuthenticationToken);
                        }
                                ));
                    }
                    else
                    {
                        MessageBox.Show(e1.Error.Message);
                    }

                    return;
                }

                calendarViewModel = new ObservableCollection <Calendar>();

                foreach (var d in e1.Result.OrderBy(a => a.StartTime))
                {
                    Calendar c = calendarViewModel.FirstOrDefault(a => a.DateString == d.StartTime.ToLongDateString().ToUpperInvariant());

                    if (c == null)
                    {
                        calendarViewModel.Add(
                            new Calendar()
                        {
                            DateString = d.StartTime.ToLongDateString().ToUpperInvariant(),
                            Items      = new ObservableCollection <Item>(
                                new Item[]
                            {
                                new Item()
                                {
                                    Length       = (d.EndTime - d.StartTime).TotalHours.ToString() + " hours",
                                    Location     = String.IsNullOrEmpty(d.Location) ? String.Empty : "(" + d.Location + ")",
                                    StartTime    = d.StartTime.ToShortTimeString(),
                                    Subject      = d.Subject,
                                    SubjectColor = d.CalendarNickname == "Microsoft" ? new SolidColorBrush(Colors.Cyan) : new SolidColorBrush(Colors.Green),
                                }
                            }),
                        });
                    }
                    else
                    {
                        c.Items.Add(
                            new Item()
                        {
                            Length       = (d.EndTime - d.StartTime).TotalHours.ToString() + " hours",
                            Location     = String.IsNullOrEmpty(d.Location) ? String.Empty : "(" + d.Location + ")",
                            StartTime    = d.StartTime.ToShortTimeString(),
                            Subject      = d.Subject,
                            SubjectColor = d.CalendarNickname == "Microsoft" ? new SolidColorBrush(Colors.Cyan) : new SolidColorBrush(Colors.Yellow),
                        });
                    }
                }

                ListBoxCalendar.ItemsSource = calendarViewModel;
            };

            client.GetMyCalendarItemsCompleted +=
                (o1, e1) =>
            {
                HideProgress();

                if (e1.Error != null)
                {
                    if (e1.Error.GetType() == typeof(FaultException <AuthenticationFault>))
                    {
                        GetAuthenticationToken(
                            new Action(
                                () =>
                        {
                            client.RefreshUsersCalendarItemsAsync(Settings.CachedAuthenticationToken);
                        }
                                ));
                    }
                    else
                    {
                        MessageBox.Show(e1.Error.Message);
                    }

                    return;
                }

                client.GetMyCalendarItemsAsync(Settings.CachedAuthenticationToken);
            };
        }