mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-28 23:54: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>
28 lines
661 B
C#
28 lines
661 B
C#
using System;
|
|
using System.Diagnostics;
|
|
|
|
using Avalonia.Interactivity;
|
|
|
|
namespace SourceGit.Views
|
|
{
|
|
public partial class ConfirmRestart : ChromelessWindow
|
|
{
|
|
public ConfirmRestart()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void CloseWindow(object _1, RoutedEventArgs _2)
|
|
{
|
|
Console.Out.WriteLine("No passphrase entered.");
|
|
App.Quit(-1);
|
|
}
|
|
|
|
private void Restart(object _1, RoutedEventArgs _2)
|
|
{
|
|
var selfExecFile = Process.GetCurrentProcess().MainModule!.FileName;
|
|
Process.Start(selfExecFile);
|
|
App.Quit(-1);
|
|
}
|
|
}
|
|
}
|