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 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ExeLauncher.GUI/AppControl.xaml.cs b/ExeLauncher.GUI/AppControl.xaml.cs
new file mode 100644
index 0000000..6f214b2
--- /dev/null
+++ b/ExeLauncher.GUI/AppControl.xaml.cs
@@ -0,0 +1,70 @@
+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 ExeLauncher.GUI
+{
+ ///
+ /// Logique d'interaction pour AppControl.xaml
+ ///
+ public partial class AppControl : UserControl
+ {
+ public string ApplicationPath
+ {
+ get { return (string)GetValue(ApplicationPathProperty); }
+ set { SetValue(ApplicationPathProperty, value); }
+ }
+
+ // Using a DependencyProperty as the backing store for ApplicationPath. This enables animation, styling, binding, etc...
+ public static readonly DependencyProperty ApplicationPathProperty =
+ DependencyProperty.Register("ApplicationPath", typeof(string), typeof(AppControl), new PropertyMetadata(""));
+
+ public string ApplicationArguments
+ {
+ get { return (string)GetValue(ApplicationArgumentsProperty); }
+ set { SetValue(ApplicationArgumentsProperty, value); }
+ }
+
+ // Using a DependencyProperty as the backing store for ApplicationArguments. This enables animation, styling, binding, etc...
+ public static readonly DependencyProperty ApplicationArgumentsProperty =
+ DependencyProperty.Register("ApplicationArguments", typeof(string), typeof(AppControl), new PropertyMetadata(""));
+
+ public string ApplicationWorkingDirectory
+ {
+ get { return (string)GetValue(ApplicationWorkingDirectoryProperty); }
+ set { SetValue(ApplicationWorkingDirectoryProperty, value); }
+ }
+
+ // Using a DependencyProperty as the backing store for ApplicationWorkingDirectory. This enables animation, styling, binding, etc...
+ public static readonly DependencyProperty ApplicationWorkingDirectoryProperty =
+ DependencyProperty.Register("ApplicationWorkingDirectory", typeof(string), typeof(AppControl), new PropertyMetadata(""));
+
+ public AppControl()
+ {
+ InitializeComponent();
+
+ //DataContext = this;
+ }
+
+ private void Button_Path(object sender, RoutedEventArgs e)
+ {
+
+ }
+
+ private void Button_WorkingDirectory(object sender, RoutedEventArgs e)
+ {
+
+ }
+ }
+}
diff --git a/ExeLauncher.GUI/ApplicationModel.cs b/ExeLauncher.GUI/ApplicationModel.cs
new file mode 100644
index 0000000..f4be7ee
--- /dev/null
+++ b/ExeLauncher.GUI/ApplicationModel.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ExeLauncher.GUI
+{
+ internal record ApplicationModel
+ {
+ public int Number { get; set; } = 1;
+ public string Path { get; set; } = "";
+ public string Arguments { get; set; } = "";
+ public string WorkingDirectory { get; set; } = "";
+ }
+}
diff --git a/ExeLauncher.GUI/AssemblyInfo.cs b/ExeLauncher.GUI/AssemblyInfo.cs
new file mode 100644
index 0000000..8b5504e
--- /dev/null
+++ b/ExeLauncher.GUI/AssemblyInfo.cs
@@ -0,0 +1,10 @@
+using System.Windows;
+
+[assembly: ThemeInfo(
+ ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
+ //(used if a resource is not found in the page,
+ // or application resource dictionaries)
+ ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
+ //(used if a resource is not found in the page,
+ // app, or any theme specific resource dictionaries)
+)]
diff --git a/ExeLauncher.GUI/ExeLauncher.GUI.csproj b/ExeLauncher.GUI/ExeLauncher.GUI.csproj
new file mode 100644
index 0000000..c39acf1
--- /dev/null
+++ b/ExeLauncher.GUI/ExeLauncher.GUI.csproj
@@ -0,0 +1,14 @@
+
+
+
+ WinExe
+ net6.0-windows
+ enable
+ true
+
+
+
+
+
+
+
diff --git a/ExeLauncher.GUI/MainWindow.xaml b/ExeLauncher.GUI/MainWindow.xaml
new file mode 100644
index 0000000..050bf9c
--- /dev/null
+++ b/ExeLauncher.GUI/MainWindow.xaml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ExeLauncher.GUI/MainWindow.xaml.cs b/ExeLauncher.GUI/MainWindow.xaml.cs
new file mode 100644
index 0000000..3feae5a
--- /dev/null
+++ b/ExeLauncher.GUI/MainWindow.xaml.cs
@@ -0,0 +1,46 @@
+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 ExeLauncher.GUI
+{
+ ///
+ /// Interaction logic for MainWindow.xaml
+ ///
+ public partial class MainWindow : Window
+ {
+ public string ApplicationName { get; set; } = "";
+ public string ApplicationIconPath { get; set; } = "";
+
+ public MainWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void Button_Icon(object sender, RoutedEventArgs e)
+ {
+
+ }
+
+ private void Button_Add(object sender, RoutedEventArgs e)
+ {
+
+ }
+
+ private void Button_Remove(object sender, RoutedEventArgs e)
+ {
+
+ }
+ }
+}
diff --git a/ExeLauncher.sln b/ExeLauncher.sln
index 043bc6b..b0b361f 100644
--- a/ExeLauncher.sln
+++ b/ExeLauncher.sln
@@ -1,10 +1,12 @@
Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 16
-VisualStudioVersion = 16.0.29609.76
+# Visual Studio Version 17
+VisualStudioVersion = 17.0.31912.275
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExeLauncher", "ExeLauncher\ExeLauncher.csproj", "{E002E8E2-D13A-4995-ABAB-DF7451FDA464}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExeLauncher.GUI", "ExeLauncher.GUI\ExeLauncher.GUI.csproj", "{F8F5EFC9-D012-49F5-B6B6-36CA7B33727C}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -15,6 +17,10 @@ Global
{E002E8E2-D13A-4995-ABAB-DF7451FDA464}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E002E8E2-D13A-4995-ABAB-DF7451FDA464}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E002E8E2-D13A-4995-ABAB-DF7451FDA464}.Release|Any CPU.Build.0 = Release|Any CPU
+ {F8F5EFC9-D012-49F5-B6B6-36CA7B33727C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {F8F5EFC9-D012-49F5-B6B6-36CA7B33727C}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {F8F5EFC9-D012-49F5-B6B6-36CA7B33727C}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {F8F5EFC9-D012-49F5-B6B6-36CA7B33727C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE