diff --git a/KurtzPelRegionPicker.sln b/KurtzPelRegionPicker.sln new file mode 100644 index 0000000..c50380b --- /dev/null +++ b/KurtzPelRegionPicker.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.28803.202 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KurtzPelRegionPicker", "KurtzPelRegionPicker\KurtzPelRegionPicker.csproj", "{CA6D150E-65AE-4577-956F-FBF677C913D5}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CA6D150E-65AE-4577-956F-FBF677C913D5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CA6D150E-65AE-4577-956F-FBF677C913D5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CA6D150E-65AE-4577-956F-FBF677C913D5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CA6D150E-65AE-4577-956F-FBF677C913D5}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {4874B466-2064-4B66-836C-0252C1679394} + EndGlobalSection +EndGlobal diff --git a/KurtzPelRegionPicker/App.config b/KurtzPelRegionPicker/App.config new file mode 100644 index 0000000..2d2a12d --- /dev/null +++ b/KurtzPelRegionPicker/App.config @@ -0,0 +1,6 @@ + + + + + + diff --git a/KurtzPelRegionPicker/App.xaml b/KurtzPelRegionPicker/App.xaml new file mode 100644 index 0000000..6b49a6c --- /dev/null +++ b/KurtzPelRegionPicker/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/KurtzPelRegionPicker/App.xaml.cs b/KurtzPelRegionPicker/App.xaml.cs new file mode 100644 index 0000000..3c032fb --- /dev/null +++ b/KurtzPelRegionPicker/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 KurtzPelRegionPicker +{ + /// + /// Logique d'interaction pour App.xaml + /// + public partial class App : Application + { + } +} diff --git a/KurtzPelRegionPicker/Extensions.cs b/KurtzPelRegionPicker/Extensions.cs new file mode 100644 index 0000000..5768a39 --- /dev/null +++ b/KurtzPelRegionPicker/Extensions.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace KurtzPelRegionPicker +{ + public static class Extensions + { + public static int IndexOf(this T[] array, T value) + { + for (int i = 0; i < array.Length; i++) + { + if (array[i].Equals(value)) + { + return i; + } + } + + return -1; + } + } +} diff --git a/KurtzPelRegionPicker/KurtzPel.ico b/KurtzPelRegionPicker/KurtzPel.ico new file mode 100644 index 0000000..aec3522 Binary files /dev/null and b/KurtzPelRegionPicker/KurtzPel.ico differ diff --git a/KurtzPelRegionPicker/KurtzPelRegionPicker.csproj b/KurtzPelRegionPicker/KurtzPelRegionPicker.csproj new file mode 100644 index 0000000..82d6946 --- /dev/null +++ b/KurtzPelRegionPicker/KurtzPelRegionPicker.csproj @@ -0,0 +1,112 @@ + + + + + Debug + AnyCPU + {CA6D150E-65AE-4577-956F-FBF677C913D5} + WinExe + KurtzPelRegionPicker + KurtzPelRegionPicker + v4.6 + 512 + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 4 + true + true + + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + KurtzPel.ico + + + app.manifest + + + + + + + + + + + + 4.0 + + + + + + + + MSBuild:Compile + Designer + + + + + MSBuild:Compile + Designer + + + App.xaml + Code + + + MainWindow.xaml + Code + + + + + Code + + + True + True + Resources.resx + + + True + Settings.settings + True + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + + + + + + + + \ No newline at end of file diff --git a/KurtzPelRegionPicker/MainWindow.xaml b/KurtzPelRegionPicker/MainWindow.xaml new file mode 100644 index 0000000..b9c4761 --- /dev/null +++ b/KurtzPelRegionPicker/MainWindow.xaml @@ -0,0 +1,23 @@ + + +