From 4c1d168f689134acb97765dd99801b06904be8ae Mon Sep 17 00:00:00 2001 From: Alee14 Date: Thu, 22 Aug 2019 18:02:25 -0400 Subject: Inital commit --- MainWindow.xaml.cs | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 MainWindow.xaml.cs (limited to 'MainWindow.xaml.cs') 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 +{ + /// + /// Interaction logic for MainWindow.xaml + /// + 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); + } + } +} -- cgit v1.2.3