mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
39 lines
994 B
C#
39 lines
994 B
C#
using Avalonia.Controls;
|
|
using Avalonia.Input;
|
|
using Avalonia.Interactivity;
|
|
|
|
namespace SourceGit.Views
|
|
{
|
|
public partial class SelfUpdate : ChromelessWindow
|
|
{
|
|
public SelfUpdate()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void BeginMoveWindow(object _, PointerPressedEventArgs e)
|
|
{
|
|
BeginMoveDrag(e);
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|