From 37957740232049b91cc47b17728be8b03bc81894 Mon Sep 17 00:00:00 2001 From: Eveldee Date: Sat, 4 Dec 2021 12:27:16 +0100 Subject: [PATCH] Add prototype GUI --- ExeLauncher.GUI/App.xaml | 9 ++++ ExeLauncher.GUI/App.xaml.cs | 17 +++++++ ExeLauncher.GUI/AppControl.xaml | 35 +++++++++++++ ExeLauncher.GUI/AppControl.xaml.cs | 70 ++++++++++++++++++++++++++ ExeLauncher.GUI/ApplicationModel.cs | 16 ++++++ ExeLauncher.GUI/AssemblyInfo.cs | 10 ++++ ExeLauncher.GUI/ExeLauncher.GUI.csproj | 14 ++++++ ExeLauncher.GUI/MainWindow.xaml | 51 +++++++++++++++++++ ExeLauncher.GUI/MainWindow.xaml.cs | 46 +++++++++++++++++ ExeLauncher.sln | 10 +++- 10 files changed, 276 insertions(+), 2 deletions(-) create mode 100644 ExeLauncher.GUI/App.xaml create mode 100644 ExeLauncher.GUI/App.xaml.cs create mode 100644 ExeLauncher.GUI/AppControl.xaml create mode 100644 ExeLauncher.GUI/AppControl.xaml.cs create mode 100644 ExeLauncher.GUI/ApplicationModel.cs create mode 100644 ExeLauncher.GUI/AssemblyInfo.cs create mode 100644 ExeLauncher.GUI/ExeLauncher.GUI.csproj create mode 100644 ExeLauncher.GUI/MainWindow.xaml create mode 100644 ExeLauncher.GUI/MainWindow.xaml.cs diff --git a/ExeLauncher.GUI/App.xaml b/ExeLauncher.GUI/App.xaml new file mode 100644 index 0000000..2230589 --- /dev/null +++ b/ExeLauncher.GUI/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/ExeLauncher.GUI/App.xaml.cs b/ExeLauncher.GUI/App.xaml.cs new file mode 100644 index 0000000..7f1227c --- /dev/null +++ b/ExeLauncher.GUI/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace ExeLauncher.GUI +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/ExeLauncher.GUI/AppControl.xaml b/ExeLauncher.GUI/AppControl.xaml new file mode 100644 index 0000000..9b8f791 --- /dev/null +++ b/ExeLauncher.GUI/AppControl.xaml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + +