Beispiel #1
0
 private void Right1(KeyCombinationEventArgs e)
 {
     e.Handled = true;
     if (InSearchBox)
     {
         return;
     }
     VJ++; UpdateVisual();
 }
Beispiel #2
0
 private void Left2(KeyCombinationEventArgs e)
 {
     e.Handled = true;
     if (InSearchBox)
     {
         return;
     }
     VI--; UpdateVisual();
 }
Beispiel #3
0
        private void Escape(KeyCombinationEventArgs e)
        {
            // Always Close the dialog first
            if (Net.Astropenguin.Helpers.Popups.CloseDialog())
            {
                return;
            }

            NavigationHandler.MasterNavigationHandler(RootFrame, null);
        }
Beispiel #4
0
        private void ScrollLess(KeyCombinationEventArgs e)
        {
            e.Handled = true;
            if (InSearchBox)
            {
                return;
            }
            ScrollViewer SV = Results.Child_0 <ScrollViewer>(1);

            SV.ChangeView(null, SV.VerticalOffset - 50, null);
        }
Beispiel #5
0
 private void ShowHelp(KeyCombinationEventArgs e)
 {
     e.Handled = true;
     PopupHelp();
 }