コード例 #1
0
        void OnEditMenuItem(IUICommand command)
        {
            TimeZoneClock  timeZoneClock  = command.Id as TimeZoneClock;
            SettingsDialog settingsDialog = new SettingsDialog(timeZoneManager);

            settingsDialog.DataContext = timeZoneClock.DataContext;

            // Create Popup with SettingsDialog child
            Popup popup = new Popup
            {
                Child = settingsDialog,
                IsLightDismissEnabled = true
            };

            settingsDialog.SizeChanged += (sender, args) =>
            {
                // Get clock center
                Point position = new Point(timeZoneClock.ActualWidth / 2,
                                           timeZoneClock.ActualHeight / 2);

                // Convert to Page coordinates
                position = timeZoneClock.TransformToVisual(this).TransformPoint(position);

                // Position popup so lower-left or lower-right corner
                //      aligns with center of edited clock
                if (position.X > this.ActualWidth / 2)
                {
                    position.X -= settingsDialog.ActualWidth;
                }

                position.Y -= settingsDialog.ActualHeight;

                // Adjust for size of page
                if (position.X + settingsDialog.ActualWidth > this.ActualWidth)
                {
                    position.X = this.ActualWidth - settingsDialog.ActualWidth;
                }

                if (position.X < 0)
                {
                    position.X = 0;
                }

                if (position.Y < 0)
                {
                    position.Y = 0;
                }

                // Set the Popup position
                popup.HorizontalOffset = position.X;
                popup.VerticalOffset   = position.Y;
            };

            popup.IsOpen = true;
        }
コード例 #2
0
        void OnEditMenuItem(IUICommand command)
        {
            TimeZoneClock  timeZoneClock  = command.Id as TimeZoneClock;
            SettingsDialog settingsDialog = new SettingsDialog(timeZoneManager);

            settingsDialog.DataContext = timeZoneClock.DataContext;

            // PopupクラスよりFlyoutへ変更
            Flyout flyout = new Flyout()
            {
                Content   = settingsDialog,
                Placement = FlyoutPlacementMode.Right,
            };

            flyout.ShowAt(timeZoneClock);
            // Create Popup with SettingsDialog child
            //Popup popup = new Popup
            //{
            //    Child = settingsDialog,
            //    IsLightDismissEnabled = true
            //};

            //settingsDialog.SizeChanged += (sender, args) =>
            //{
            //    // Get clock center
            //    Point position = new Point(timeZoneClock.ActualWidth / 2,
            //                               timeZoneClock.ActualHeight / 2);

            //    // Convert to Page coordinates
            //    position = timeZoneClock.TransformToVisual(this).TransformPoint(position);

            //    // Position popup so lower-left or lower-right corner
            //    //      aligns with center of edited clock
            //    if (position.X > this.ActualWidth / 2)
            //        position.X -= settingsDialog.ActualWidth;

            //    position.Y -= settingsDialog.ActualHeight;

            //    // Adjust for size of page
            //    if (position.X + settingsDialog.ActualWidth > this.ActualWidth)
            //        position.X = this.ActualWidth - settingsDialog.ActualWidth;

            //    if (position.X < 0)
            //        position.X = 0;

            //    if (position.Y < 0)
            //        position.Y = 0;

            //    // Set the Popup position
            //    popup.HorizontalOffset = position.X;
            //    popup.VerticalOffset = position.Y;
            //};

            //popup.IsOpen = true;
        }
コード例 #3
0
        void OnAddMenuItem(IUICommand command)
        {
            // Create new TimeZoneClock
            TimeZoneClock timeZoneClock = new TimeZoneClock
            {
                DataContext = new TimeZoneClockViewModel()
            };

            // Insert after the tapped clock
            TimeZoneClock clickedClock = command.Id as TimeZoneClock;
            int           index        = uniformGrid.Children.IndexOf(clickedClock);

            uniformGrid.Children.Insert(index + 1, timeZoneClock);
        }
コード例 #4
0
        void OnApplicationSuspending(object sender, SuspendingEventArgs args)
        {
            appSettings.Clear();

            for (int index = 0; index < uniformGrid.Children.Count; index++)
            {
                TimeZoneClock          timeZoneClock = uniformGrid.Children[index] as TimeZoneClock;
                TimeZoneClockViewModel viewModel     =
                    timeZoneClock.DataContext as TimeZoneClockViewModel;
                string preface = index.ToString();

                appSettings[preface + "Location"]    = viewModel.Location;
                appSettings[preface + "TimeZoneKey"] = viewModel.TimeZoneKey;
                appSettings[preface + "Foreground"]  = viewModel.ForegroundName;
                appSettings[preface + "Background"]  = viewModel.BackgroundName;
            }
        }
コード例 #5
0
        async void OnDeleteMenuItem(IUICommand command)
        {
            TimeZoneClock          timeZoneClock = command.Id as TimeZoneClock;
            TimeZoneClockViewModel viewModel     = timeZoneClock.DataContext as TimeZoneClockViewModel;

            MessageDialog msgdlg = new MessageDialog("Delete clock from collection?",
                                                     viewModel.Location);

            msgdlg.Commands.Add(new UICommand("OK"));
            msgdlg.Commands.Add(new UICommand("Cancel"));
            msgdlg.DefaultCommandIndex = 0;
            msgdlg.CancelCommandIndex  = 1;

            IUICommand msgDlgCommand = await msgdlg.ShowAsync();

            if (msgDlgCommand.Label == "OK")
            {
                uniformGrid.Children.Remove(command.Id as TimeZoneClock);
            }
        }
コード例 #6
0
        public MainPage()
        {
            this.InitializeComponent();

            // Load application settings for clocks
            int index = 0;

            while (appSettings.ContainsKey(index.ToString() + "Location"))
            {
                string preface = index.ToString();

                TimeZoneClock clock = new TimeZoneClock
                {
                    DataContext = new TimeZoneClockViewModel
                    {
                        Location       = appSettings[preface + "Location"] as string,
                        TimeZoneKey    = appSettings[preface + "TimeZoneKey"] as string,
                        ForegroundName = appSettings[preface + "Foreground"] as string,
                        BackgroundName = appSettings[preface + "Background"] as string
                    },
                };
                uniformGrid.Children.Add(clock);
                index += 1;
            }

            // If there are no settings, make a default Clock
            if (uniformGrid.Children.Count == 0)
            {
                TimeZoneClock clock = new TimeZoneClock
                {
                    DataContext = new TimeZoneClockViewModel()
                };
                uniformGrid.Children.Add(clock);
            }

            // Set the Suspending handler
            Application.Current.Suspending += OnApplicationSuspending;

            // Start the Rendering event
            CompositionTarget.Rendering += OnCompositionTargetRendering;
        }