mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-23 05:05:00 +00:00
feature: hotkeys enhancement. see issue #19
This commit is contained in:
parent
b309c1c346
commit
acb74a4b95
8 changed files with 167 additions and 13 deletions
14
src/Views/Hotkeys.axaml.cs
Normal file
14
src/Views/Hotkeys.axaml.cs
Normal file
|
@ -0,0 +1,14 @@
|
|||
using Avalonia.Controls;
|
||||
using Avalonia.Interactivity;
|
||||
|
||||
namespace SourceGit.Views {
|
||||
public partial class Hotkeys : Window {
|
||||
public Hotkeys() {
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void CloseWindow(object sender, RoutedEventArgs e) {
|
||||
Close();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue