commit 1e2077c110f14ba157725f12a4bbb3c8c817ffe8 Author: adri Date: Wed Feb 7 13:19:33 2018 +0100 first diff --git a/COURS01.sln b/COURS01.sln new file mode 100644 index 0000000..a480aae --- /dev/null +++ b/COURS01.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}") = "COURS01", "COURS01\COURS01.csproj", "{ADC8329A-0CF6-4DFA-A2E9-F2DD4BEAF97C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {ADC8329A-0CF6-4DFA-A2E9-F2DD4BEAF97C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {ADC8329A-0CF6-4DFA-A2E9-F2DD4BEAF97C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {ADC8329A-0CF6-4DFA-A2E9-F2DD4BEAF97C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {ADC8329A-0CF6-4DFA-A2E9-F2DD4BEAF97C}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {1C7F0D79-A565-4E60-8582-26C93A684621} + EndGlobalSection +EndGlobal diff --git a/COURS01/App.config b/COURS01/App.config new file mode 100644 index 0000000..731f6de --- /dev/null +++ b/COURS01/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/COURS01/COURS01.csproj b/COURS01/COURS01.csproj new file mode 100644 index 0000000..120c55b --- /dev/null +++ b/COURS01/COURS01.csproj @@ -0,0 +1,98 @@ + + + + + Debug + AnyCPU + {ADC8329A-0CF6-4DFA-A2E9-F2DD4BEAF97C} + WinExe + COURS01 + COURS01 + v4.6.1 + 512 + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + Form + + + FAccueil.cs + + + Form + + + FPrincipal.cs + + + + + FAccueil.cs + + + FPrincipal.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + True + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + + + + + + + \ No newline at end of file diff --git a/COURS01/FAccueil.Designer.cs b/COURS01/FAccueil.Designer.cs new file mode 100644 index 0000000..10a4f92 --- /dev/null +++ b/COURS01/FAccueil.Designer.cs @@ -0,0 +1,108 @@ +namespace COURS01 +{ + partial class EcranAccueil + { + /// + /// 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.btnPoussez = new System.Windows.Forms.Button(); + this.btnEntrez = new System.Windows.Forms.Button(); + this.lblTitre = new System.Windows.Forms.Label(); + this.pictureBox1 = new System.Windows.Forms.PictureBox(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); + this.SuspendLayout(); + // + // btnPoussez + // + this.btnPoussez.Location = new System.Drawing.Point(11, 183); + this.btnPoussez.Name = "btnPoussez"; + this.btnPoussez.Size = new System.Drawing.Size(120, 50); + this.btnPoussez.TabIndex = 0; + this.btnPoussez.Text = "Poussez"; + this.btnPoussez.UseVisualStyleBackColor = true; + this.btnPoussez.Click += new System.EventHandler(this.btnPoussez_Click); + // + // btnEntrez + // + this.btnEntrez.Location = new System.Drawing.Point(152, 183); + this.btnEntrez.Name = "btnEntrez"; + this.btnEntrez.Size = new System.Drawing.Size(120, 50); + this.btnEntrez.TabIndex = 1; + this.btnEntrez.Text = "Entrez"; + this.btnEntrez.UseVisualStyleBackColor = true; + this.btnEntrez.Click += new System.EventHandler(this.btnEntrez_Click); + // + // lblTitre + // + this.lblTitre.AutoSize = true; + this.lblTitre.Font = new System.Drawing.Font("Monotype Corsiva", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblTitre.Location = new System.Drawing.Point(86, 9); + this.lblTitre.Name = "lblTitre"; + this.lblTitre.Size = new System.Drawing.Size(112, 18); + this.lblTitre.TabIndex = 2; + this.lblTitre.Text = "Découverte de c#"; + // + // pictureBox1 + // + this.pictureBox1.Image = global::COURS01.Properties.Resources._4yfr26g; + this.pictureBox1.InitialImage = global::COURS01.Properties.Resources._4yfr26g; + this.pictureBox1.Location = new System.Drawing.Point(12, 30); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(260, 147); + this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox1.TabIndex = 3; + this.pictureBox1.TabStop = false; + // + // EcranAccueil + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(284, 244); + this.Controls.Add(this.pictureBox1); + this.Controls.Add(this.lblTitre); + this.Controls.Add(this.btnEntrez); + this.Controls.Add(this.btnPoussez); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D; + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "EcranAccueil"; + this.Text = "Bienvenue, welcome,..."; + this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.EcranAccueil_FormClosing); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Button btnPoussez; + private System.Windows.Forms.Button btnEntrez; + private System.Windows.Forms.Label lblTitre; + private System.Windows.Forms.PictureBox pictureBox1; + } +} + diff --git a/COURS01/FAccueil.cs b/COURS01/FAccueil.cs new file mode 100644 index 0000000..eee1bd4 --- /dev/null +++ b/COURS01/FAccueil.cs @@ -0,0 +1,58 @@ +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 COURS01 +{ + public partial class EcranAccueil : Form + { + private int nbClickBtnPoussez; + public EcranAccueil() + { + nbClickBtnPoussez = 0; + InitializeComponent(); + } + + private void btnPoussez_Click(object sender, EventArgs e) + { + if (++this.nbClickBtnPoussez % 2 == 1) + { + this.pictureBox1.Image = global::COURS01.Properties.Resources.Konachan_com___257209_clouds_grass_mifuru_night_original_seifuku_skirt_sky_socks_stars; + this.lblTitre.Text = "yolo"; + this.lblTitre.Location = new Point(this.Width / 2 - this.lblTitre.Width / 2, this.lblTitre.Location.Y); + } + else + { + this.pictureBox1.Image = global::COURS01.Properties.Resources._4yfr26g; + this.lblTitre.Text = "Découverte de c#"; + this.lblTitre.Location = new Point(this.Width / 2 - this.lblTitre.Width / 2, this.lblTitre.Location.Y); + } + } + + private void EcranAccueil_FormClosing(object sender, FormClosingEventArgs e) + { + if (MessageBox.Show("Voulez-vous vraiment quiter ?", "Souhait", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) + { + e.Cancel = false; + } + else + { + e.Cancel = true; + } + } + + private void btnEntrez_Click(object sender, EventArgs e) + { + EcranPrincipal f = new EcranPrincipal(); + this.Hide(); + f.ShowDialog();//Bloque la fenetre parrent alors que show ne bloque pas le parent + this.Show(); + } + } +} diff --git a/COURS01/FAccueil.resx b/COURS01/FAccueil.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/COURS01/FAccueil.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/COURS01/FPrincipal.Designer.cs b/COURS01/FPrincipal.Designer.cs new file mode 100644 index 0000000..a740743 --- /dev/null +++ b/COURS01/FPrincipal.Designer.cs @@ -0,0 +1,129 @@ +namespace COURS01 +{ + partial class EcranPrincipal + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.menuStrip1 = new System.Windows.Forms.MenuStrip(); + this.mFenetre = new System.Windows.Forms.ToolStripMenuItem(); + this.mAide = new System.Windows.Forms.ToolStripMenuItem(); + this.mQuitter = new System.Windows.Forms.ToolStripMenuItem(); + this.mfProgression = new System.Windows.Forms.ToolStripMenuItem(); + this.mfListe = new System.Windows.Forms.ToolStripMenuItem(); + this.mfEditeur = new System.Windows.Forms.ToolStripMenuItem(); + this.menuStrip1.SuspendLayout(); + this.SuspendLayout(); + // + // menuStrip1 + // + this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.mFenetre, + this.mAide, + this.mQuitter}); + this.menuStrip1.Location = new System.Drawing.Point(0, 0); + this.menuStrip1.Name = "menuStrip1"; + this.menuStrip1.Size = new System.Drawing.Size(911, 24); + this.menuStrip1.TabIndex = 0; + this.menuStrip1.Text = "menuStrip1"; + // + // mFenetre + // + this.mFenetre.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.mfProgression, + this.mfListe, + this.mfEditeur}); + this.mFenetre.Name = "mFenetre"; + this.mFenetre.Size = new System.Drawing.Size(58, 20); + this.mFenetre.Text = "Fenêtre"; + // + // mAide + // + this.mAide.Name = "mAide"; + this.mAide.ShortcutKeys = System.Windows.Forms.Keys.F1; + this.mAide.Size = new System.Drawing.Size(43, 20); + this.mAide.Text = "Aide"; + this.mAide.Click += new System.EventHandler(this.mNDef_Click); + // + // mQuitter + // + this.mQuitter.Name = "mQuitter"; + this.mQuitter.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4))); + this.mQuitter.Size = new System.Drawing.Size(56, 20); + this.mQuitter.Text = "Quitter"; + this.mQuitter.Click += new System.EventHandler(this.mQuitter_Click); + // + // mfProgression + // + this.mfProgression.Name = "mfProgression"; + this.mfProgression.Size = new System.Drawing.Size(187, 22); + this.mfProgression.Text = "Barres de progression"; + this.mfProgression.Click += new System.EventHandler(this.mNDef_Click); + // + // mfListe + // + this.mfListe.Name = "mfListe"; + this.mfListe.Size = new System.Drawing.Size(187, 22); + this.mfListe.Text = "Liste"; + this.mfListe.Click += new System.EventHandler(this.mNDef_Click); + // + // mfEditeur + // + this.mfEditeur.Name = "mfEditeur"; + this.mfEditeur.Size = new System.Drawing.Size(187, 22); + this.mfEditeur.Text = "Editeur"; + this.mfEditeur.Click += new System.EventHandler(this.mNDef_Click); + // + // EcranPrincipal + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(911, 546); + this.Controls.Add(this.menuStrip1); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D; + this.MainMenuStrip = this.menuStrip1; + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "EcranPrincipal"; + this.Text = "Ecran Principal"; + this.menuStrip1.ResumeLayout(false); + this.menuStrip1.PerformLayout(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.MenuStrip menuStrip1; + private System.Windows.Forms.ToolStripMenuItem mFenetre; + private System.Windows.Forms.ToolStripMenuItem mAide; + private System.Windows.Forms.ToolStripMenuItem mQuitter; + private System.Windows.Forms.ToolStripMenuItem mfProgression; + private System.Windows.Forms.ToolStripMenuItem mfListe; + private System.Windows.Forms.ToolStripMenuItem mfEditeur; + } +} \ No newline at end of file diff --git a/COURS01/FPrincipal.cs b/COURS01/FPrincipal.cs new file mode 100644 index 0000000..b28c782 --- /dev/null +++ b/COURS01/FPrincipal.cs @@ -0,0 +1,29 @@ +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 COURS01 +{ + public partial class EcranPrincipal : Form + { + public EcranPrincipal() + { + InitializeComponent(); + } + + private void mQuitter_Click(object sender, EventArgs e) + { + Close(); + } + private void mNDef_Click(object sender, EventArgs e) + { + MessageBox.Show("Fonctionnalité non implémentée"); + } + } +} diff --git a/COURS01/FPrincipal.resx b/COURS01/FPrincipal.resx new file mode 100644 index 0000000..d5494e3 --- /dev/null +++ b/COURS01/FPrincipal.resx @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + \ No newline at end of file diff --git a/COURS01/Program.cs b/COURS01/Program.cs new file mode 100644 index 0000000..bbce60e --- /dev/null +++ b/COURS01/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace COURS01 +{ + static class Program + { + /// + /// Point d'entrée principal de l'application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new EcranAccueil()); + } + } +} diff --git a/COURS01/Properties/AssemblyInfo.cs b/COURS01/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..686b576 --- /dev/null +++ b/COURS01/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("COURS01")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("COURS01")] +[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("adc8329a-0cf6-4dfa-a2e9-f2dd4beaf97c")] + +// 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/COURS01/Properties/Resources.Designer.cs b/COURS01/Properties/Resources.Designer.cs new file mode 100644 index 0000000..36e5bba --- /dev/null +++ b/COURS01/Properties/Resources.Designer.cs @@ -0,0 +1,84 @@ +//------------------------------------------------------------------------------ +// +// 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 COURS01.Properties { + using System; + + + /// + /// 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", "15.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 (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("COURS01.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; + } + } + + /// + /// Recherche une ressource localisée de type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap _4yfr26g { + get { + object obj = ResourceManager.GetObject("4yfr26g", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Recherche une ressource localisée de type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Konachan_com___257209_clouds_grass_mifuru_night_original_seifuku_skirt_sky_socks_stars { + get { + object obj = ResourceManager.GetObject("Konachan_com___257209_clouds_grass_mifuru_night_original_seifuku_skirt_sky_socks_" + + "stars", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + } +} diff --git a/COURS01/Properties/Resources.resx b/COURS01/Properties/Resources.resx new file mode 100644 index 0000000..e032ace --- /dev/null +++ b/COURS01/Properties/Resources.resx @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + ..\Resources\4yfr26g.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\Konachan.com - 257209 clouds grass mifuru night original seifuku skirt sky socks stars.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + \ No newline at end of file diff --git a/COURS01/Properties/Settings.Designer.cs b/COURS01/Properties/Settings.Designer.cs new file mode 100644 index 0000000..112a8a5 --- /dev/null +++ b/COURS01/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 COURS01.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/COURS01/Properties/Settings.settings b/COURS01/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/COURS01/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/COURS01/Resources/4yfr26g.png b/COURS01/Resources/4yfr26g.png new file mode 100644 index 0000000..c3a993c Binary files /dev/null and b/COURS01/Resources/4yfr26g.png differ diff --git a/COURS01/Resources/Konachan.com - 257209 clouds grass mifuru night original seifuku skirt sky socks stars.jpg b/COURS01/Resources/Konachan.com - 257209 clouds grass mifuru night original seifuku skirt sky socks stars.jpg new file mode 100644 index 0000000..11ed979 Binary files /dev/null and b/COURS01/Resources/Konachan.com - 257209 clouds grass mifuru night original seifuku skirt sky socks stars.jpg differ diff --git a/COURS01/bin/Debug/COURS01 - Copie.exe b/COURS01/bin/Debug/COURS01 - Copie.exe new file mode 100644 index 0000000..e8b4231 Binary files /dev/null and b/COURS01/bin/Debug/COURS01 - Copie.exe differ diff --git a/COURS01/bin/Debug/COURS01.exe b/COURS01/bin/Debug/COURS01.exe new file mode 100644 index 0000000..40df7a9 Binary files /dev/null and b/COURS01/bin/Debug/COURS01.exe differ diff --git a/COURS01/bin/Debug/COURS01.exe.config b/COURS01/bin/Debug/COURS01.exe.config new file mode 100644 index 0000000..731f6de --- /dev/null +++ b/COURS01/bin/Debug/COURS01.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/COURS01/bin/Debug/COURS01.pdb b/COURS01/bin/Debug/COURS01.pdb new file mode 100644 index 0000000..c60cf80 Binary files /dev/null and b/COURS01/bin/Debug/COURS01.pdb differ diff --git a/COURS01/obj/Debug/COURS01.EcranAccueil.resources b/COURS01/obj/Debug/COURS01.EcranAccueil.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/COURS01/obj/Debug/COURS01.EcranAccueil.resources differ diff --git a/COURS01/obj/Debug/COURS01.EcranPrincipal.resources b/COURS01/obj/Debug/COURS01.EcranPrincipal.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/COURS01/obj/Debug/COURS01.EcranPrincipal.resources differ diff --git a/COURS01/obj/Debug/COURS01.Properties.Resources.resources b/COURS01/obj/Debug/COURS01.Properties.Resources.resources new file mode 100644 index 0000000..bfc0b3e Binary files /dev/null and b/COURS01/obj/Debug/COURS01.Properties.Resources.resources differ diff --git a/COURS01/obj/Debug/COURS01.csproj.CoreCompileInputs.cache b/COURS01/obj/Debug/COURS01.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..2d783dc --- /dev/null +++ b/COURS01/obj/Debug/COURS01.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +f594791bdfa1e2c98fe6ee6a7e85291ad38ad01e diff --git a/COURS01/obj/Debug/COURS01.csproj.FileListAbsolute.txt b/COURS01/obj/Debug/COURS01.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..067861b --- /dev/null +++ b/COURS01/obj/Debug/COURS01.csproj.FileListAbsolute.txt @@ -0,0 +1,10 @@ +C:\Users\Adrien\source\repos\COURS01\COURS01\bin\Debug\COURS01.exe.config +C:\Users\Adrien\source\repos\COURS01\COURS01\bin\Debug\COURS01.exe +C:\Users\Adrien\source\repos\COURS01\COURS01\bin\Debug\COURS01.pdb +C:\Users\Adrien\source\repos\COURS01\COURS01\obj\Debug\COURS01.EcranAccueil.resources +C:\Users\Adrien\source\repos\COURS01\COURS01\obj\Debug\COURS01.Properties.Resources.resources +C:\Users\Adrien\source\repos\COURS01\COURS01\obj\Debug\COURS01.csproj.GenerateResource.Cache +C:\Users\Adrien\source\repos\COURS01\COURS01\obj\Debug\COURS01.csproj.CoreCompileInputs.cache +C:\Users\Adrien\source\repos\COURS01\COURS01\obj\Debug\COURS01.exe +C:\Users\Adrien\source\repos\COURS01\COURS01\obj\Debug\COURS01.pdb +C:\Users\Adrien\source\repos\COURS01\COURS01\obj\Debug\COURS01.EcranPrincipal.resources diff --git a/COURS01/obj/Debug/COURS01.csproj.GenerateResource.Cache b/COURS01/obj/Debug/COURS01.csproj.GenerateResource.Cache new file mode 100644 index 0000000..f4e95b8 Binary files /dev/null and b/COURS01/obj/Debug/COURS01.csproj.GenerateResource.Cache differ diff --git a/COURS01/obj/Debug/COURS01.exe b/COURS01/obj/Debug/COURS01.exe new file mode 100644 index 0000000..40df7a9 Binary files /dev/null and b/COURS01/obj/Debug/COURS01.exe differ diff --git a/COURS01/obj/Debug/COURS01.pdb b/COURS01/obj/Debug/COURS01.pdb new file mode 100644 index 0000000..c60cf80 Binary files /dev/null and b/COURS01/obj/Debug/COURS01.pdb differ diff --git a/COURS01/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/COURS01/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..aa06190 Binary files /dev/null and b/COURS01/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/COURS01/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/COURS01/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..870fc46 Binary files /dev/null and b/COURS01/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/COURS01/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll b/COURS01/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll new file mode 100644 index 0000000..530197b Binary files /dev/null and b/COURS01/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll differ diff --git a/COURS01/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/COURS01/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/COURS01/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/COURS01/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/COURS01/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/COURS01/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29