-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTopScreenEditorWindow.xaml.cs
49 lines (45 loc) · 1.63 KB
/
TopScreenEditorWindow.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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;
using dspatch;
namespace dspatch_gui
{
/// <summary>
/// Interaction logic for TopScreenEditorWindow.xaml
/// </summary>
public partial class TopScreenEditorWindow : Window
{
public TopScreenEditorWindow()
{
InitializeComponent();
}
private void button_Click(object sender, RoutedEventArgs e)
{
this.Close();
}
private void HaxxStationTopSave_click(object sender, RoutedEventArgs e)
{
// This is for checking if the change went through to the main code.
//Terribly coded, but still functions. Might be leading to some part being inefficient.
DownloadStationPatcher.HaxxStationTop(haxxStationTextBox.Text, haxxStationTextBox2.Text);
if (!DownloadStationPatcher.top.Equals("HaxxStation by Gericom,") || !DownloadStationPatcher.top1.Equals("shutterbug2000, Apache Thunder"))
{
MessageBox.Show("You have successfully changed the Top Screen!", "Success", MessageBoxButton.OK, MessageBoxImage.Information);
}
else
{
MessageBox.Show("Something went wrong with changing the Top Screen!", "Error", MessageBoxButton.OK, MessageBoxImage.Error);
}
}
}
}