mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-27 21:27:19 -08:00
36 lines
833 B
C#
36 lines
833 B
C#
|
using System;
|
||
|
using System.Diagnostics;
|
||
|
|
||
|
using Avalonia.Controls;
|
||
|
using Avalonia.Input;
|
||
|
using Avalonia.Interactivity;
|
||
|
|
||
|
namespace SourceGit.Views
|
||
|
{
|
||
|
public partial class ConfirmRestart : ChromelessWindow
|
||
|
{
|
||
|
public ConfirmRestart()
|
||
|
{
|
||
|
InitializeComponent();
|
||
|
}
|
||
|
|
||
|
private void BeginMoveWindow(object _, PointerPressedEventArgs e)
|
||
|
{
|
||
|
BeginMoveDrag(e);
|
||
|
}
|
||
|
|
||
|
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);
|
||
|
}
|
||
|
}
|
||
|
}
|