Example #1
0
        private static void SearchQuery_Changed(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            ClilocWindow entry = d as ClilocWindow;

            if (entry != null)
            {
                entry.UpdateSearchQuery();
            }
        }
Example #2
0
        private void ClilocButton_Click(object sender, RoutedEventArgs e)
        {
            ShowLoading();

            try
            {
                ClilocWindow window = new ClilocWindow();

                if (Globals.Instance.Clilocs != null)
                {
                    window.Clilocs = Globals.Instance.Clilocs;
                }

                window.Show();
            }
            catch (Exception ex)
            {
                ShowNotification(NotificationType.Error, ex);
            }

            HideLoading();
        }
Example #3
0
        private void ClilocButton_Click( object sender, RoutedEventArgs e )
        {
            ShowLoading();

            try
            {
                ClilocWindow window = new ClilocWindow();

                if ( Globals.Instance.Clilocs != null )
                    window.Clilocs = Globals.Instance.Clilocs;

                window.Show();
            }
            catch ( Exception ex )
            {
                ShowNotification( NotificationType.Error, ex );
            }

            HideLoading();
        }