mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-11-27 13:30:35 +00:00
135 lines
3.8 KiB
C#
135 lines
3.8 KiB
C#
using GameBaseClassLibrary;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
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 EnterKey.xaml
|
|
/// </summary>
|
|
public partial class EnterKey : Window
|
|
{
|
|
bool ckey = false;
|
|
Custom_Message cm;
|
|
public EnterKey(bool ckey)
|
|
{
|
|
InitializeComponent();
|
|
this.ckey = ckey;
|
|
|
|
if (ckey)
|
|
{
|
|
Key.Text = "CommonKey";
|
|
region.Text = "WIIU";
|
|
}
|
|
else
|
|
{
|
|
if ((FindResource("mvm") as MainViewModel).GbTemp.Tid != "")
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
public EnterKey(int i)
|
|
{
|
|
InitializeComponent();
|
|
region.Visibility = Visibility.Hidden;
|
|
|
|
Key.Text = "Enter the TitleKey for 000500101000400";
|
|
if (i == 1)
|
|
{
|
|
Key.Text += "0";
|
|
}
|
|
else
|
|
{
|
|
Key.Text += "1";
|
|
}
|
|
|
|
}
|
|
|
|
|
|
private void Button_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
this.Close();
|
|
}
|
|
|
|
private void Button_Click_1(object sender, RoutedEventArgs e)
|
|
{
|
|
if(tbKey.Text.Length > 32 || tbKey.Text.Length < 32)
|
|
{
|
|
if(tbKey.Text.Length > 32)
|
|
{
|
|
cm = new Custom_Message("Wrong Key", "The entered Key is too long");
|
|
cm.Owner = this;
|
|
cm.ShowDialog();
|
|
}
|
|
else
|
|
{
|
|
cm = new Custom_Message("Wrong Key", "The entered Key is too short");
|
|
cm.Owner = this;
|
|
cm.ShowDialog();
|
|
}
|
|
|
|
}
|
|
else
|
|
{
|
|
if (ckey)
|
|
{
|
|
MainViewModel mvm = (MainViewModel)FindResource("mvm");
|
|
if (mvm.checkcKey(tbKey.Text))
|
|
{
|
|
|
|
cm = new Custom_Message("Correct Key", "The entered CommonKey is correct!");
|
|
cm.Owner = this;
|
|
cm.ShowDialog();
|
|
this.Close();
|
|
mvm.ArePathsSet();
|
|
}
|
|
else
|
|
{
|
|
cm = new Custom_Message("Incorrect Key", "The entered CommonKey is incorrect!");
|
|
cm.Owner = this;
|
|
cm.ShowDialog();
|
|
}
|
|
}
|
|
|
|
else
|
|
{
|
|
MainViewModel mvm = (MainViewModel)FindResource("mvm");
|
|
if (mvm.checkKey(tbKey.Text))
|
|
{
|
|
cm = new Custom_Message("Correct Key", "The entered TitleKey is correct!");
|
|
cm.Owner = this;
|
|
cm.ShowDialog();
|
|
this.Close();
|
|
}
|
|
else
|
|
{
|
|
cm = new Custom_Message("Incorrect Key", "The entered TitleKey is incorrect!");
|
|
cm.Owner = this;
|
|
cm.ShowDialog();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
|
|
private void Window_GotFocus(object sender, RoutedEventArgs e)
|
|
{
|
|
tbKey.Focus();
|
|
tbKey.Select(0,0);
|
|
}
|
|
}
|
|
}
|