Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.63 KB | None | 0 0
  1. namespace Lab2_Exercice2
  2. {
  3.     partial class Form1
  4.     {
  5.         /// <summary>
  6.         /// Variable nécessaire au concepteur.
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.  
  10.         /// <summary>
  11.         /// Nettoyage des ressources utilisées.
  12.         /// </summary>
  13.         /// <param name="disposing">true si les ressources managées doivent être supprimées ; sinon, false.</param>
  14.         protected override void Dispose(bool disposing)
  15.         {
  16.             if (disposing && (components != null))
  17.             {
  18.                 components.Dispose();
  19.             }
  20.             base.Dispose(disposing);
  21.         }
  22.  
  23.         #region Code généré par le Concepteur Windows Form
  24.  
  25.         /// <summary>
  26.         /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
  27.         /// le contenu de cette méthode avec l'éditeur de code.
  28.         /// </summary>
  29.         private void InitializeComponent()
  30.         {
  31.             this.button1 = new System.Windows.Forms.Button();
  32.             this.textBox1 = new System.Windows.Forms.TextBox();
  33.             this.SuspendLayout();
  34.             //
  35.             // button1
  36.             //
  37.             this.button1.Location = new System.Drawing.Point(241, 12);
  38.             this.button1.Name = "button1";
  39.             this.button1.Size = new System.Drawing.Size(75, 23);
  40.             this.button1.TabIndex = 1;
  41.             this.button1.Text = "Start";
  42.             this.button1.UseVisualStyleBackColor = true;
  43.             this.button1.Click += new System.EventHandler(this.button1_Click);
  44.             //
  45.             // textBox1
  46.             //
  47.             this.textBox1.Location = new System.Drawing.Point(13, 53);
  48.             this.textBox1.Name = "textBox1";
  49.             this.textBox1.ReadOnly = true;
  50.             this.textBox1.Size = new System.Drawing.Size(508, 20);
  51.             this.textBox1.TabIndex = 2;
  52.             //
  53.             // Form1
  54.             //
  55.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  56.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  57.             this.ClientSize = new System.Drawing.Size(533, 94);
  58.             this.Controls.Add(this.textBox1);
  59.             this.Controls.Add(this.button1);
  60.             this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  61.             this.Name = "Form1";
  62.             this.Text = "Form1";
  63.             this.Load += new System.EventHandler(this.Form1_Load);
  64.             this.ResumeLayout(false);
  65.             this.PerformLayout();
  66.  
  67.         }
  68.  
  69.         #endregion
  70.         private System.Windows.Forms.Button button1;
  71.         private System.Windows.Forms.TextBox textBox1;
  72.     }
  73. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement