private void Right1(KeyCombinationEventArgs e) { e.Handled = true; if (InSearchBox) { return; } VJ++; UpdateVisual(); }
private void Left2(KeyCombinationEventArgs e) { e.Handled = true; if (InSearchBox) { return; } VI--; UpdateVisual(); }
private void Escape(KeyCombinationEventArgs e) { // Always Close the dialog first if (Net.Astropenguin.Helpers.Popups.CloseDialog()) { return; } NavigationHandler.MasterNavigationHandler(RootFrame, null); }
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); }
private void ShowHelp(KeyCombinationEventArgs e) { e.Handled = true; PopupHelp(); }