VRCMelonAssistant/ModAssistant/Pages/Intro.xaml.cs
2020-02-26 09:27:39 +00:00

58 lines
1.8 KiB
C#

using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Navigation;
namespace ModAssistant.Pages
{
/// <summary>
/// Interaction logic for Intro.xaml
/// </summary>
public partial class Intro : Page
{
public static Intro Instance = new Intro();
public Intro()
{
InitializeComponent();
}
private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e)
{
Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri));
e.Handled = true;
}
private void Disagree_Click(object sender, RoutedEventArgs e)
{
MainWindow.Instance.ModsButton.IsEnabled = false;
Properties.Settings.Default.Agreed = false;
Properties.Settings.Default.Save();
MessageBox.Show((string)FindResource("Intro:ClosingApp"));
System.Windows.Application.Current.Shutdown();
}
private void Agree_Click(object sender, RoutedEventArgs e)
{
if (string.IsNullOrEmpty(MainWindow.GameVersion))
{
string line1 = (string)FindResource("Intro:VersionDownloadFailed");
string line2 = (string)FindResource("Intro:ModsTabDisabled");
MessageBox.Show($"{line1}.\n{line2}");
}
else
{
MainWindow.Instance.ModsButton.IsEnabled = true;
string text = (string)FindResource("Intro:ModsTabEnabled");
Utils.SendNotify(text);
MainWindow.Instance.MainText = text;
}
Properties.Settings.Default.Agreed = true;
Properties.Settings.Default.Save();
}
}
}