mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-31 09:04: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>
33 lines
847 B
C#
33 lines
847 B
C#
using Avalonia.Controls;
|
|
using Avalonia.Interactivity;
|
|
|
|
namespace SourceGit.Views
|
|
{
|
|
public partial class SelfUpdate : ChromelessWindow
|
|
{
|
|
public SelfUpdate()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void CloseWindow(object _1, RoutedEventArgs _2)
|
|
{
|
|
Close();
|
|
}
|
|
|
|
private void GotoDownload(object _, RoutedEventArgs e)
|
|
{
|
|
Native.OS.OpenBrowser("https://github.com/sourcegit-scm/sourcegit/releases/latest");
|
|
e.Handled = true;
|
|
}
|
|
|
|
private void IgnoreThisVersion(object sender, RoutedEventArgs e)
|
|
{
|
|
if (sender is Button { DataContext: Models.Version ver })
|
|
ViewModels.Preference.Instance.IgnoreUpdateTag = ver.TagName;
|
|
|
|
Close();
|
|
e.Handled = true;
|
|
}
|
|
}
|
|
}
|