109 lines
4.6 KiB
C#
109 lines
4.6 KiB
C#
namespace COURS01
|
||
{
|
||
partial class EcranAccueil
|
||
{
|
||
/// <summary>
|
||
/// Variable nécessaire au concepteur.
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// Nettoyage des ressources utilisées.
|
||
/// </summary>
|
||
/// <param name="disposing">true si les ressources managées doivent être supprimées ; sinon, false.</param>
|
||
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
|
||
|
||
/// <summary>
|
||
/// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
|
||
/// le contenu de cette méthode avec l'éditeur de code.
|
||
/// </summary>
|
||
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;
|
||
}
|
||
}
|
||
|