show-giants-values/ShowGiantsForm/Form1.Designer.cs

87 lines
3.3 KiB
C#
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace ShowGiantsForm
{
partial class Form1
{
/// <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.components = new System.ComponentModel.Container();
this.SpeedLbl = new System.Windows.Forms.Label();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.hpLbl = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// SpeedLbl
//
this.SpeedLbl.AutoSize = true;
this.SpeedLbl.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.SpeedLbl.ForeColor = System.Drawing.Color.Red;
this.SpeedLbl.Location = new System.Drawing.Point(-1, 0);
this.SpeedLbl.Name = "SpeedLbl";
this.SpeedLbl.Size = new System.Drawing.Size(117, 37);
this.SpeedLbl.TabIndex = 0;
this.SpeedLbl.Text = "Speed:";
//
// timer1
//
this.timer1.Enabled = true;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// hpLbl
//
this.hpLbl.AutoSize = true;
this.hpLbl.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.hpLbl.ForeColor = System.Drawing.Color.Red;
this.hpLbl.Location = new System.Drawing.Point(-1, 35);
this.hpLbl.Name = "hpLbl";
this.hpLbl.Size = new System.Drawing.Size(0, 37);
this.hpLbl.TabIndex = 2;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(305, 72);
this.Controls.Add(this.hpLbl);
this.Controls.Add(this.SpeedLbl);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label SpeedLbl;
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.Label hpLbl;
}
}