From 15ebf2c5e791721a31b2614b77ea871bc9b7f4ac Mon Sep 17 00:00:00 2001 From: adri Date: Thu, 29 Mar 2018 09:13:21 +0200 Subject: [PATCH] Ajoutez des fichiers projet. --- BDDPata.sln | 25 +++++ BDDPata/App.config | 6 ++ BDDPata/BDDPata.csproj | 79 +++++++++++++++ BDDPata/Form1.Designer.cs | 39 ++++++++ BDDPata/Form1.cs | 20 ++++ BDDPata/Program.cs | 22 +++++ BDDPata/Properties/AssemblyInfo.cs | 36 +++++++ BDDPata/Properties/Resources.Designer.cs | 71 ++++++++++++++ BDDPata/Properties/Resources.resx | 117 +++++++++++++++++++++++ BDDPata/Properties/Settings.Designer.cs | 30 ++++++ BDDPata/Properties/Settings.settings | 7 ++ 11 files changed, 452 insertions(+) create mode 100644 BDDPata.sln create mode 100644 BDDPata/App.config create mode 100644 BDDPata/BDDPata.csproj create mode 100644 BDDPata/Form1.Designer.cs create mode 100644 BDDPata/Form1.cs create mode 100644 BDDPata/Program.cs create mode 100644 BDDPata/Properties/AssemblyInfo.cs create mode 100644 BDDPata/Properties/Resources.Designer.cs create mode 100644 BDDPata/Properties/Resources.resx create mode 100644 BDDPata/Properties/Settings.Designer.cs create mode 100644 BDDPata/Properties/Settings.settings diff --git a/BDDPata.sln b/BDDPata.sln new file mode 100644 index 0000000..f29f4b1 --- /dev/null +++ b/BDDPata.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.27130.2020 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BDDPata", "BDDPata\BDDPata.csproj", "{5089CC88-44CF-4B3F-855E-8C5C1AF01931}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {5089CC88-44CF-4B3F-855E-8C5C1AF01931}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5089CC88-44CF-4B3F-855E-8C5C1AF01931}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5089CC88-44CF-4B3F-855E-8C5C1AF01931}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5089CC88-44CF-4B3F-855E-8C5C1AF01931}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {507C5A62-1666-463A-8385-DCEC2FD439ED} + EndGlobalSection +EndGlobal diff --git a/BDDPata/App.config b/BDDPata/App.config new file mode 100644 index 0000000..731f6de --- /dev/null +++ b/BDDPata/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/BDDPata/BDDPata.csproj b/BDDPata/BDDPata.csproj new file mode 100644 index 0000000..aa0e0d7 --- /dev/null +++ b/BDDPata/BDDPata.csproj @@ -0,0 +1,79 @@ + + + + + Debug + AnyCPU + {5089CC88-44CF-4B3F-855E-8C5C1AF01931} + WinExe + BDDPata + BDDPata + v4.6.1 + 512 + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + Form + + + Form1.cs + + + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + \ No newline at end of file diff --git a/BDDPata/Form1.Designer.cs b/BDDPata/Form1.Designer.cs new file mode 100644 index 0000000..6ae3ad7 --- /dev/null +++ b/BDDPata/Form1.Designer.cs @@ -0,0 +1,39 @@ +namespace BDDPata +{ + partial class Form1 + { + /// + /// Variable nécessaire au concepteur. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Nettoyage des ressources utilisées. + /// + /// true si les ressources managées doivent être supprimées ; sinon, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Code généré par le Concepteur Windows Form + + /// + /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas + /// le contenu de cette méthode avec l'éditeur de code. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Text = "Form1"; + } + + #endregion + } +} + diff --git a/BDDPata/Form1.cs b/BDDPata/Form1.cs new file mode 100644 index 0000000..412aacf --- /dev/null +++ b/BDDPata/Form1.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace BDDPata +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + } +} diff --git a/BDDPata/Program.cs b/BDDPata/Program.cs new file mode 100644 index 0000000..7f2142a --- /dev/null +++ b/BDDPata/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace BDDPata +{ + static class Program + { + /// + /// Point d'entrée principal de l'application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} diff --git a/BDDPata/Properties/AssemblyInfo.cs b/BDDPata/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..597ef7d --- /dev/null +++ b/BDDPata/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 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("BDDPata")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("BDDPata")] +[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)] + +// Le GUID suivant est pour l'ID de la typelib si ce projet est exposé à COM +[assembly: Guid("5089cc88-44cf-4b3f-855e-8c5c1af01931")] + +// 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/BDDPata/Properties/Resources.Designer.cs b/BDDPata/Properties/Resources.Designer.cs new file mode 100644 index 0000000..4287ff2 --- /dev/null +++ b/BDDPata/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 BDDPata.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("BDDPata.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/BDDPata/Properties/Resources.resx b/BDDPata/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/BDDPata/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/BDDPata/Properties/Settings.Designer.cs b/BDDPata/Properties/Settings.Designer.cs new file mode 100644 index 0000000..0cdd2be --- /dev/null +++ b/BDDPata/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 BDDPata.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/BDDPata/Properties/Settings.settings b/BDDPata/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/BDDPata/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + +