mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-12-11 20:12:32 +00:00
116 lines
3.5 KiB
C#
116 lines
3.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Data;
|
|
using System.Windows.Documents;
|
|
using System.Windows.Input;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using System.Windows.Shapes;
|
|
|
|
namespace UWUVCI_AIO_WPF.UI.Windows
|
|
{
|
|
/// <summary>
|
|
/// Interaktionslogik für Custom_Message.xaml
|
|
/// </summary>
|
|
public partial class Custom_Message : Window
|
|
{
|
|
string path;
|
|
bool reset = false;
|
|
public Custom_Message(string title, string message)
|
|
{
|
|
InitializeComponent();
|
|
|
|
|
|
dont.Visibility = Visibility.Hidden;
|
|
Title.Text = title;
|
|
Message.Content = message;
|
|
Folder.Visibility = Visibility.Hidden;
|
|
if (title.Contains("Resetting") || message.Contains("NUS format") || message.Contains("Folder contains Files or Subfolders, do you really want to use this") || message.Contains("If using Custom Bases"))
|
|
{
|
|
Reset.Visibility = Visibility.Visible;
|
|
if (title.Contains("Resetting"))
|
|
{
|
|
reset = true;
|
|
}
|
|
}
|
|
if(title.Equals("Image Warning"))
|
|
{
|
|
dont.Visibility = Visibility.Visible;
|
|
}
|
|
|
|
}
|
|
public Custom_Message(string title, string message, string Path)
|
|
{
|
|
InitializeComponent();
|
|
Title.Text = title;
|
|
Message.Content = message;
|
|
this.path = Path;
|
|
Folder.Visibility = Visibility.Visible;
|
|
|
|
}
|
|
private void Button_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
if(dont.IsChecked == true)
|
|
{
|
|
Properties.Settings.Default.dont = true;
|
|
Properties.Settings.Default.Save();
|
|
}
|
|
this.Close();
|
|
}
|
|
|
|
private void Folder_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
try
|
|
{
|
|
if (File.Exists(path)) path = new FileInfo(path).DirectoryName;
|
|
Process.Start(path);
|
|
this.Close();
|
|
}
|
|
catch (Exception)
|
|
{
|
|
Custom_Message cm = new Custom_Message("An Error occured", "An error occured opening the folder. Please make sure the Output Path exists.");
|
|
try
|
|
{
|
|
cm.Owner = (FindResource("mvm") as MainViewModel).mw;
|
|
}catch(Exception)
|
|
{
|
|
|
|
}
|
|
cm.ShowDialog();
|
|
if (dont.IsChecked == true)
|
|
{
|
|
Properties.Settings.Default.dont = true;
|
|
Properties.Settings.Default.Save();
|
|
}
|
|
this.Close();
|
|
}
|
|
|
|
}
|
|
|
|
private void Reset_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
if (reset)
|
|
{
|
|
this.Close();
|
|
((MainViewModel)FindResource("mvm")).ResetTitleKeys();
|
|
}
|
|
else
|
|
{
|
|
((MainViewModel)FindResource("mvm")).choosefolder = true;
|
|
}
|
|
if (dont.IsChecked == true)
|
|
{
|
|
Properties.Settings.Default.dont = true;
|
|
Properties.Settings.Default.Save();
|
|
}
|
|
this.Close();
|
|
}
|
|
}
|
|
}
|