-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathHelpBox.Designer.cs
More file actions
81 lines (75 loc) · 3.5 KB
/
HelpBox.Designer.cs
File metadata and controls
81 lines (75 loc) · 3.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
namespace LauncherShyax
{
partial class HelpBox
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HelpBox));
this.label1 = new System.Windows.Forms.Label();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.AutoEllipsis = true;
this.label1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(12, 161);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(260, 92);
this.label1.TabIndex = 0;
this.label1.Text = "WoWLauncher est une application écrite en C# avec le Framework .NET 4 distribué s" +
"ous licence GNU GPL.\r\nPour toutes informations supplémentaires, allez sur Zone E" +
"mu.\r\n\r\n© Shyax 2011\r\n";
this.label1.UseCompatibleTextRendering = true;
//
// pictureBox1
//
this.pictureBox1.Image = global::LauncherShyax.Properties.Resources.arena2008;
this.pictureBox1.Location = new System.Drawing.Point(76, 28);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(120, 107);
this.pictureBox1.TabIndex = 1;
this.pictureBox1.TabStop = false;
//
// HelpBox
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 262);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "HelpBox";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "A propos de l\'application";
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.PictureBox pictureBox1;
}
}