Is your feature request related to a problem? Please describe.
My app needs to perform an action on pressing BrowserBack button. WPF can handle such keys like this:
<Window.CommandBindings>
<CommandBinding Command="BrowseBack" Executed="CommandBinding_OnExecuted"></CommandBinding>
</Window.CommandBindings>
That doesn't exist in Avalonia.
Describe the solution you'd like
Not sure if Window.CommandBindings is necessary. Perhaps extend the regular KeyBinding to support Gesture="BrowserBack"?
Describe alternatives you've considered
Use native interop perhaps?
Additional context
Minimal repro
Is your feature request related to a problem? Please describe.
My app needs to perform an action on pressing BrowserBack button. WPF can handle such keys like this:
That doesn't exist in Avalonia.
Describe the solution you'd like
Not sure if
Window.CommandBindingsis necessary. Perhaps extend the regularKeyBindingto supportGesture="BrowserBack"?Describe alternatives you've considered
Use native interop perhaps?
Additional context
Minimal repro