From fe6038baa4b6a621bfe446686e97f50513992cdc Mon Sep 17 00:00:00 2001 From: "louis.dufour" Date: Tue, 9 Jan 2024 15:43:33 +0100 Subject: [PATCH 1/5] Add(dev): Basic interface --- Sources/WpfApp/WpfApp.sln | 25 ++++ Sources/WpfApp/WpfApp/App.config | 6 + Sources/WpfApp/WpfApp/App.xaml | 9 ++ Sources/WpfApp/WpfApp/App.xaml.cs | 17 +++ Sources/WpfApp/WpfApp/MainWindow.xaml | 31 +++++ Sources/WpfApp/WpfApp/MainWindow.xaml.cs | 28 +++++ .../WpfApp/WpfApp/Properties/AssemblyInfo.cs | 55 ++++++++ .../WpfApp/Properties/Resources.Designer.cs | 71 +++++++++++ .../WpfApp/WpfApp/Properties/Resources.resx | 117 ++++++++++++++++++ .../WpfApp/Properties/Settings.Designer.cs | 30 +++++ .../WpfApp/Properties/Settings.settings | 7 ++ Sources/WpfApp/WpfApp/WpfApp.csproj | 98 +++++++++++++++ 12 files changed, 494 insertions(+) create mode 100644 Sources/WpfApp/WpfApp.sln create mode 100644 Sources/WpfApp/WpfApp/App.config create mode 100644 Sources/WpfApp/WpfApp/App.xaml create mode 100644 Sources/WpfApp/WpfApp/App.xaml.cs create mode 100644 Sources/WpfApp/WpfApp/MainWindow.xaml create mode 100644 Sources/WpfApp/WpfApp/MainWindow.xaml.cs create mode 100644 Sources/WpfApp/WpfApp/Properties/AssemblyInfo.cs create mode 100644 Sources/WpfApp/WpfApp/Properties/Resources.Designer.cs create mode 100644 Sources/WpfApp/WpfApp/Properties/Resources.resx create mode 100644 Sources/WpfApp/WpfApp/Properties/Settings.Designer.cs create mode 100644 Sources/WpfApp/WpfApp/Properties/Settings.settings create mode 100644 Sources/WpfApp/WpfApp/WpfApp.csproj diff --git a/Sources/WpfApp/WpfApp.sln b/Sources/WpfApp/WpfApp.sln new file mode 100644 index 0000000..d311aa1 --- /dev/null +++ b/Sources/WpfApp/WpfApp.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.34330.188 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfApp", "WpfApp\WpfApp.csproj", "{A5F0635D-16DD-4866-B48E-4E06ADFEEE92}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A5F0635D-16DD-4866-B48E-4E06ADFEEE92}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A5F0635D-16DD-4866-B48E-4E06ADFEEE92}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A5F0635D-16DD-4866-B48E-4E06ADFEEE92}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A5F0635D-16DD-4866-B48E-4E06ADFEEE92}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {9EB7877A-8182-4040-939C-E0B134C4A74F} + EndGlobalSection +EndGlobal diff --git a/Sources/WpfApp/WpfApp/App.config b/Sources/WpfApp/WpfApp/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/Sources/WpfApp/WpfApp/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Sources/WpfApp/WpfApp/App.xaml b/Sources/WpfApp/WpfApp/App.xaml new file mode 100644 index 0000000..c41b4bf --- /dev/null +++ b/Sources/WpfApp/WpfApp/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/Sources/WpfApp/WpfApp/App.xaml.cs b/Sources/WpfApp/WpfApp/App.xaml.cs new file mode 100644 index 0000000..ebc8edd --- /dev/null +++ b/Sources/WpfApp/WpfApp/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 WpfApp +{ + /// + /// Logique d'interaction pour App.xaml + /// + public partial class App : Application + { + } +} diff --git a/Sources/WpfApp/WpfApp/MainWindow.xaml b/Sources/WpfApp/WpfApp/MainWindow.xaml new file mode 100644 index 0000000..ddc2611 --- /dev/null +++ b/Sources/WpfApp/WpfApp/MainWindow.xaml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + +