using System.Drawing; using System.Windows.Forms; namespace Bonhomme02 { 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.timerImage = new System.Windows.Forms.Timer(this.components); this.btnCreationCarrosse = new System.Windows.Forms.Button(); this.NyanCatGif = new System.Windows.Forms.PictureBox(); this.Obstacle = new System.Windows.Forms.PictureBox(); this.Sol = new System.Windows.Forms.PictureBox(); this.TV = new System.Windows.Forms.PictureBox(); ((System.ComponentModel.ISupportInitialize)(this.NyanCatGif)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.Obstacle)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.Sol)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TV)).BeginInit(); this.SuspendLayout(); // // timerImage // this.timerImage.Interval = 500; this.timerImage.Tick += new System.EventHandler(this.timerImage_Tick); // // btnCreationCarrosse // this.btnCreationCarrosse.Location = new System.Drawing.Point(13, 468); this.btnCreationCarrosse.Name = "btnCreationCarrosse"; this.btnCreationCarrosse.Size = new System.Drawing.Size(1246, 23); this.btnCreationCarrosse.TabIndex = 11; this.btnCreationCarrosse.Text = "Creer Bonhomme et le faire sauter "; this.btnCreationCarrosse.UseVisualStyleBackColor = true; this.btnCreationCarrosse.Click += new System.EventHandler(this.btnCreationCarrosse_Click); // // NyanCatGif // this.NyanCatGif.BackColor = System.Drawing.Color.Gray; this.NyanCatGif.Location = new System.Drawing.Point(1105, 13); this.NyanCatGif.Name = "NyanCatGif"; this.NyanCatGif.Size = new System.Drawing.Size(154, 105); this.NyanCatGif.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.NyanCatGif.TabIndex = 14; this.NyanCatGif.TabStop = false; // // Obstacle // this.Obstacle.BackColor = System.Drawing.Color.Silver; this.Obstacle.Location = new System.Drawing.Point(909, 223); this.Obstacle.Name = "Obstacle"; this.Obstacle.Size = new System.Drawing.Size(10, 192); this.Obstacle.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize; this.Obstacle.TabIndex = 13; this.Obstacle.TabStop = false; // // Sol // this.Sol.BackgroundImage = global::Bonhomme02.Properties.Resources.moon; this.Sol.InitialImage = global::Bonhomme02.Properties.Resources.moon; this.Sol.Location = new System.Drawing.Point(12, 415); this.Sol.Name = "Sol"; this.Sol.Size = new System.Drawing.Size(1247, 47); this.Sol.TabIndex = 12; this.Sol.TabStop = false; // // TV // this.TV.BackColor = System.Drawing.Color.Gray; this.TV.Location = new System.Drawing.Point(12, 13); this.TV.Name = "TV"; this.TV.Size = new System.Drawing.Size(1247, 449); this.TV.TabIndex = 0; this.TV.TabStop = false; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1271, 502); this.Controls.Add(this.NyanCatGif); this.Controls.Add(this.Obstacle); this.Controls.Add(this.Sol); this.Controls.Add(this.btnCreationCarrosse); this.Controls.Add(this.TV); this.DoubleBuffered = true; this.Name = "Form1"; this.Text = "Dessins Animés"; this.Load += new System.EventHandler(this.Form1_Load); this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseMove); ((System.ComponentModel.ISupportInitialize)(this.NyanCatGif)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.Obstacle)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.Sol)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TV)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.PictureBox TV; private System.Windows.Forms.Timer timerImage; private System.Windows.Forms.Button btnCreationCarrosse; private System.Windows.Forms.PictureBox Sol; private System.Windows.Forms.PictureBox Obstacle; private System.Windows.Forms.PictureBox NyanCatGif; } }