sourcegit/src/Views/SelfUpdate.axaml.cs

34 lines
847 B
C#
Raw Normal View History

using Avalonia.Controls;
using Avalonia.Interactivity;
namespace SourceGit.Views
{
public partial class SelfUpdate : ChromelessWindow
{
public SelfUpdate()
{
InitializeComponent();
}
2024-07-14 00:55:15 -07:00
private void CloseWindow(object _1, RoutedEventArgs _2)
{
Close();
}
2024-07-14 00:55:15 -07:00
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)
{
2024-07-14 00:55:15 -07:00
if (sender is Button { DataContext: Models.Version ver })
ViewModels.Preference.Instance.IgnoreUpdateTag = ver.TagName;
Close();
e.Handled = true;
}
}
}