mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-26 21:17:20 -08:00
e3c0f7d496
* 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;
|
|
}
|
|
}
|
|
}
|