mirror of
https://github.com/crskycode/GARbro.git
synced 2026-06-10 23:59:13 +08:00
check for updates - initial implementation.
This commit is contained in:
31
GUI/UpdateDialog.xaml.cs
Normal file
31
GUI/UpdateDialog.xaml.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System.Windows;
|
||||
|
||||
namespace GARbro.GUI
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for UpdateDialog.xaml
|
||||
/// </summary>
|
||||
public partial class UpdateDialog : Window
|
||||
{
|
||||
public UpdateDialog (GarUpdateInfo info, bool enable_release, bool enable_formats)
|
||||
{
|
||||
InitializeComponent ();
|
||||
this.ReleasePane.Visibility = enable_release ? Visibility.Visible : Visibility.Collapsed;
|
||||
this.FormatsPane.Visibility = enable_formats ? Visibility.Visible : Visibility.Collapsed;
|
||||
if (string.IsNullOrEmpty (info.ReleaseNotes))
|
||||
this.ReleaseNotes.Visibility = Visibility.Collapsed;
|
||||
this.DataContext = info;
|
||||
}
|
||||
|
||||
private void Hyperlink_RequestNavigate (object sender, System.Windows.Navigation.RequestNavigateEventArgs e)
|
||||
{
|
||||
if (App.NavigateUri (e.Uri))
|
||||
e.Handled = true;
|
||||
}
|
||||
|
||||
private void Button_Click (object sender, RoutedEventArgs e)
|
||||
{
|
||||
this.DialogResult = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user