mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-30 00:24:59 +00:00

* 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>
27 lines
578 B
C#
27 lines
578 B
C#
using Avalonia.Interactivity;
|
|
|
|
namespace SourceGit.Views
|
|
{
|
|
public partial class ConfirmCommitWithoutFiles : ChromelessWindow
|
|
{
|
|
public ConfirmCommitWithoutFiles()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void Sure(object _1, RoutedEventArgs _2)
|
|
{
|
|
if (DataContext is ViewModels.ConfirmCommitWithoutFiles vm)
|
|
{
|
|
vm.Continue();
|
|
}
|
|
|
|
Close();
|
|
}
|
|
|
|
private void CloseWindow(object _1, RoutedEventArgs _2)
|
|
{
|
|
Close();
|
|
}
|
|
}
|
|
}
|