mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2025-02-18 05:48:03 -08: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();
|
||
|
}
|
||
|
}
|
||
|
}
|