From f455d32615a9f942bc1aa18804310b880ef92a5f Mon Sep 17 00:00:00 2001 From: Adri Date: Mon, 1 Oct 2018 08:34:26 +0200 Subject: [PATCH] Ajoutez des fichiers projet. --- ISET2018_WPF.sln | 25 ++++ ISET2018_WPF/App.config | 6 + ISET2018_WPF/App.xaml | 9 ++ ISET2018_WPF/App.xaml.cs | 17 +++ ISET2018_WPF/ISET2018_WPF.csproj | 97 +++++++++++++++ ISET2018_WPF/MainWindow.xaml | 12 ++ ISET2018_WPF/MainWindow.xaml.cs | 28 +++++ ISET2018_WPF/Properties/AssemblyInfo.cs | 55 ++++++++ ISET2018_WPF/Properties/Resources.Designer.cs | 71 +++++++++++ ISET2018_WPF/Properties/Resources.resx | 117 ++++++++++++++++++ ISET2018_WPF/Properties/Settings.Designer.cs | 30 +++++ ISET2018_WPF/Properties/Settings.settings | 7 ++ 12 files changed, 474 insertions(+) create mode 100644 ISET2018_WPF.sln create mode 100644 ISET2018_WPF/App.config create mode 100644 ISET2018_WPF/App.xaml create mode 100644 ISET2018_WPF/App.xaml.cs create mode 100644 ISET2018_WPF/ISET2018_WPF.csproj create mode 100644 ISET2018_WPF/MainWindow.xaml create mode 100644 ISET2018_WPF/MainWindow.xaml.cs create mode 100644 ISET2018_WPF/Properties/AssemblyInfo.cs create mode 100644 ISET2018_WPF/Properties/Resources.Designer.cs create mode 100644 ISET2018_WPF/Properties/Resources.resx create mode 100644 ISET2018_WPF/Properties/Settings.Designer.cs create mode 100644 ISET2018_WPF/Properties/Settings.settings diff --git a/ISET2018_WPF.sln b/ISET2018_WPF.sln new file mode 100644 index 0000000..9de5c6c --- /dev/null +++ b/ISET2018_WPF.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.27703.2042 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ISET2018_WPF", "ISET2018_WPF\ISET2018_WPF.csproj", "{5926803C-1C06-47FC-966D-A5B9A9F1AE9F}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {5926803C-1C06-47FC-966D-A5B9A9F1AE9F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5926803C-1C06-47FC-966D-A5B9A9F1AE9F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5926803C-1C06-47FC-966D-A5B9A9F1AE9F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5926803C-1C06-47FC-966D-A5B9A9F1AE9F}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {6EB18C55-716E-4DC1-8020-DBF1122A2403} + EndGlobalSection +EndGlobal diff --git a/ISET2018_WPF/App.config b/ISET2018_WPF/App.config new file mode 100644 index 0000000..731f6de --- /dev/null +++ b/ISET2018_WPF/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/ISET2018_WPF/App.xaml b/ISET2018_WPF/App.xaml new file mode 100644 index 0000000..7b7bc6a --- /dev/null +++ b/ISET2018_WPF/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/ISET2018_WPF/App.xaml.cs b/ISET2018_WPF/App.xaml.cs new file mode 100644 index 0000000..2bed173 --- /dev/null +++ b/ISET2018_WPF/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 ISET2018_WPF +{ + /// + /// Logique d'interaction pour App.xaml + /// + public partial class App : Application + { + } +} diff --git a/ISET2018_WPF/ISET2018_WPF.csproj b/ISET2018_WPF/ISET2018_WPF.csproj new file mode 100644 index 0000000..938d152 --- /dev/null +++ b/ISET2018_WPF/ISET2018_WPF.csproj @@ -0,0 +1,97 @@ + + + + + Debug + AnyCPU + {5926803C-1C06-47FC-966D-A5B9A9F1AE9F} + WinExe + ISET2018_WPF + ISET2018_WPF + v4.6.1 + 512 + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 4 + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + 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/ISET2018_WPF/MainWindow.xaml b/ISET2018_WPF/MainWindow.xaml new file mode 100644 index 0000000..aa7ffd5 --- /dev/null +++ b/ISET2018_WPF/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/ISET2018_WPF/MainWindow.xaml.cs b/ISET2018_WPF/MainWindow.xaml.cs new file mode 100644 index 0000000..e8ba474 --- /dev/null +++ b/ISET2018_WPF/MainWindow.xaml.cs @@ -0,0 +1,28 @@ +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 ISET2018_WPF +{ + /// + /// Logique d'interaction pour MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} diff --git a/ISET2018_WPF/Properties/AssemblyInfo.cs b/ISET2018_WPF/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..92812ca --- /dev/null +++ b/ISET2018_WPF/Properties/AssemblyInfo.cs @@ -0,0 +1,55 @@ +using System.Reflection; +using System.Resources; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Windows; + +// Les informations générales relatives à un assembly dépendent de +// l'ensemble d'attributs suivant. Changez les valeurs de ces attributs pour modifier les informations +// associées à un assembly. +[assembly: AssemblyTitle("ISET2018_WPF")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("ISET2018_WPF")] +[assembly: AssemblyCopyright("Copyright © 2018")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// L'affectation de la valeur false à ComVisible rend les types invisibles dans cet assembly +// aux composants COM. Si vous devez accéder à un type dans cet assembly à partir de +// COM, affectez la valeur true à l'attribut ComVisible sur ce type. +[assembly: ComVisible(false)] + +//Pour commencer à générer des applications localisables, définissez +//CultureUtiliséePourCoder dans votre fichier .csproj +//dans . Par exemple, si vous utilisez le français +//dans vos fichiers sources, définissez à fr-FR. Puis, supprimez les marques de commentaire de +//l'attribut NeutralResourceLanguage ci-dessous. Mettez à jour "fr-FR" dans +//la ligne ci-après pour qu'elle corresponde au paramètre UICulture du fichier projet. + +//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] + + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //où se trouvent les dictionnaires de ressources spécifiques à un thème + //(utilisé si une ressource est introuvable dans la page, + // ou dictionnaires de ressources de l'application) + ResourceDictionaryLocation.SourceAssembly //où se trouve le dictionnaire de ressources générique + //(utilisé si une ressource est introuvable dans la page, + // dans l'application ou dans l'un des dictionnaires de ressources spécifiques à un thème) +)] + + +// Les informations de version pour un assembly se composent des quatre valeurs suivantes : +// +// Version principale +// Version secondaire +// Numéro de build +// Révision +// +// Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut +// en utilisant '*', comme indiqué ci-dessous : +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/ISET2018_WPF/Properties/Resources.Designer.cs b/ISET2018_WPF/Properties/Resources.Designer.cs new file mode 100644 index 0000000..14b8b24 --- /dev/null +++ b/ISET2018_WPF/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// Ce code a été généré par un outil. +// Version du runtime :4.0.30319.42000 +// +// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si +// le code est régénéré. +// +//------------------------------------------------------------------------------ + +namespace ISET2018_WPF.Properties +{ + + + /// + /// Une classe de ressource fortement typée destinée, entre autres, à la consultation des chaînes localisées. + /// + // Cette classe a été générée automatiquement par la classe StronglyTypedResourceBuilder + // à l'aide d'un outil, tel que ResGen ou Visual Studio. + // Pour ajouter ou supprimer un membre, modifiez votre fichier .ResX, puis réexécutez ResGen + // avec l'option /str ou régénérez votre projet VS. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources + { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() + { + } + + /// + /// Retourne l'instance ResourceManager mise en cache utilisée par cette classe. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager + { + get + { + if ((resourceMan == null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ISET2018_WPF.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Remplace la propriété CurrentUICulture du thread actuel pour toutes + /// les recherches de ressources à l'aide de cette classe de ressource fortement typée. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + } +} diff --git a/ISET2018_WPF/Properties/Resources.resx b/ISET2018_WPF/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/ISET2018_WPF/Properties/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/ISET2018_WPF/Properties/Settings.Designer.cs b/ISET2018_WPF/Properties/Settings.Designer.cs new file mode 100644 index 0000000..6c94e8e --- /dev/null +++ b/ISET2018_WPF/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace ISET2018_WPF.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/ISET2018_WPF/Properties/Settings.settings b/ISET2018_WPF/Properties/Settings.settings new file mode 100644 index 0000000..033d7a5 --- /dev/null +++ b/ISET2018_WPF/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file