mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
15 lines
309 B
C#
15 lines
309 B
C#
|
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();
|
||
|
}
|
||
|
}
|
||
|
}
|