cours01/COURS01/FPrincipal.Designer.cs

130 lines
5.3 KiB
C#

namespace COURS01
{
partial class EcranPrincipal
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.mFenetre = 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.mAide = new System.Windows.Forms.ToolStripMenuItem();
this.mQuitter = 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";
//
// 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);
//
// 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);
//
// 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.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.EcranAccueil_FormClosing);
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;
}
}