Browse Source

Added PageRight and PageLeft Keygestures in PlatformHotkeyConfiguration

pull/10882/head
nicola36631 3 years ago
parent
commit
e635d900ff
  1. 10
      src/Avalonia.Base/Input/Platform/PlatformHotkeyConfiguration.cs

10
src/Avalonia.Base/Input/Platform/PlatformHotkeyConfiguration.cs

@ -85,6 +85,14 @@ namespace Avalonia.Input.Platform
{
new KeyGesture(Key.Left, KeyModifiers.Alt)
};
PageLeft = new List<KeyGesture>
{
new KeyGesture(Key.PageUp, KeyModifiers.Shift)
};
PageRight = new List<KeyGesture>
{
new KeyGesture(Key.PageDown, KeyModifiers.Shift)
};
PageUp = new List<KeyGesture>
{
new KeyGesture(Key.PageUp)
@ -116,5 +124,7 @@ namespace Avalonia.Input.Platform
public List<KeyGesture> Back { get; set; }
public List<KeyGesture> PageUp { get; set; }
public List<KeyGesture> PageDown { get; set; }
public List<KeyGesture> PageRight { get; set; }
public List<KeyGesture> PageLeft { get; set; }
}
}

Loading…
Cancel
Save