check for updates - initial implementation.

This commit is contained in:
morkt
2017-02-14 07:22:48 +04:00
parent 2df8145f83
commit 987d57a4db
11 changed files with 370 additions and 16 deletions

31
GUI/UpdateDialog.xaml.cs Normal file
View 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;
}
}
}