mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-20 19:55:00 +00:00
20 lines
384 B
C#
20 lines
384 B
C#
using Avalonia.Input;
|
|
|
|
namespace SourceGit.Views
|
|
{
|
|
public partial class Hotkeys : ChromelessWindow
|
|
{
|
|
public Hotkeys()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
protected override void OnKeyDown(KeyEventArgs e)
|
|
{
|
|
base.OnKeyDown(e);
|
|
|
|
if (!e.Handled && e.Key == Key.Escape)
|
|
Close();
|
|
}
|
|
}
|
|
}
|