summaryrefslogtreecommitdiff
path: root/MainWindow.xaml.cs
diff options
context:
space:
mode:
authorAlee14 <alee14498@gmail.com>2019-08-22 18:02:25 -0400
committerAlee14 <alee14498@gmail.com>2019-08-22 18:02:25 -0400
commit4c1d168f689134acb97765dd99801b06904be8ae (patch)
tree9c239b414fb20d209b1dd6778b98c82ad7085c71 /MainWindow.xaml.cs
downloadHTPC-Launcher-master.tar.gz
HTPC-Launcher-master.tar.bz2
HTPC-Launcher-master.zip
Inital commitHEADmaster
Diffstat (limited to 'MainWindow.xaml.cs')
-rw-r--r--MainWindow.xaml.cs38
1 files changed, 38 insertions, 0 deletions
diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs
new file mode 100644
index 0000000..04ea2a8
--- /dev/null
+++ b/MainWindow.xaml.cs
@@ -0,0 +1,38 @@
+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.Navigation;
+using System.Windows.Shapes;
+
+namespace HTPC_Launcher
+{
+ /// <summary>
+ /// Interaction logic for MainWindow.xaml
+ /// </summary>
+ public partial class MainWindow : Window
+ {
+ public MainWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void BtnLaunch_Click(object sender, RoutedEventArgs e)
+ {
+ MessageBox.Show("Hello World");
+ }
+
+ private void BtnExit_Click(object sender, RoutedEventArgs e)
+ {
+ Environment.Exit(0);
+ }
+ }
+}