sourcegit/src/Views/Hotkeys.axaml.cs
leo e3c0f7d496
refactor: rewrite chromeless window (#634)
* use system chrome instead of custom caption button on macOS
* move `BeginMoveWindow` and `MaximizeOrRestoreWindow` to `ChromelessWindow`
* better supports for fullscreen mode on macOS
* redesign the layout of title bar for all windows

Signed-off-by: leo <longshuang@msn.cn>
2024-11-01 09:38:42 +08:00

10 lines
174 B
C#

namespace SourceGit.Views
{
public partial class Hotkeys : ChromelessWindow
{
public Hotkeys()
{
InitializeComponent();
}
}
}