comparison FrmAbout.Designer.cs @ 85:0bb9f40d44eb

Re #88: Complete initial WinForms UI * Add basic initial "about" box * Translations (below) Re #179: Make sure that translations are used throughout UI * Make all controls translatable * Supply translations for all controls Re #204: Use new limits in WinForms UI * Warn the user and cap the number if we try to go out of range for equipment
author IBBoard <dev@ibboard.co.uk>
date Sat, 31 Oct 2009 20:54:42 +0000
parents
children acb4456598ce
comparison
equal deleted inserted replaced
84:1e85a0687e4d 85:0bb9f40d44eb
1 namespace IBBoard.WarFoundry.GUI.WinForms
2 {
3 partial class FrmAbout
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Windows Form Designer generated code
24
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 this.lblWarFoundry = new System.Windows.Forms.Label();
32 this.lblVersion = new System.Windows.Forms.Label();
33 this.lblDevelopers = new IBBoard.Windows.Forms.IBBLabel();
34 this.textBox1 = new System.Windows.Forms.TextBox();
35 this.textBox2 = new System.Windows.Forms.TextBox();
36 this.lblThanks = new IBBoard.Windows.Forms.IBBLabel();
37 this.SuspendLayout();
38 //
39 // lblWarFoundry
40 //
41 this.lblWarFoundry.Font = new System.Drawing.Font("Microsoft Sans Serif", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (0)));
42 this.lblWarFoundry.Location = new System.Drawing.Point(12, 9);
43 this.lblWarFoundry.Name = "lblWarFoundry";
44 this.lblWarFoundry.Size = new System.Drawing.Size(268, 45);
45 this.lblWarFoundry.TabIndex = 0;
46 this.lblWarFoundry.Text = "WarFoundry";
47 this.lblWarFoundry.TextAlign = System.Drawing.ContentAlignment.TopCenter;
48 //
49 // lblVersion
50 //
51 this.lblVersion.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (0)));
52 this.lblVersion.Location = new System.Drawing.Point(16, 54);
53 this.lblVersion.Name = "lblVersion";
54 this.lblVersion.Size = new System.Drawing.Size(264, 23);
55 this.lblVersion.TabIndex = 1;
56 this.lblVersion.Text = "v0.1b4";
57 //
58 // lblDevelopers
59 //
60 this.lblDevelopers.AutoSize = true;
61 this.lblDevelopers.Location = new System.Drawing.Point(12, 80);
62 this.lblDevelopers.Name = "lblDevelopers";
63 this.lblDevelopers.Size = new System.Drawing.Size(59, 13);
64 this.lblDevelopers.TabIndex = 2;
65 this.lblDevelopers.Text = "developers";
66 //
67 // textBox1
68 //
69 this.textBox1.Location = new System.Drawing.Point(80, 80);
70 this.textBox1.Multiline = true;
71 this.textBox1.Name = "textBox1";
72 this.textBox1.ReadOnly = true;
73 this.textBox1.Size = new System.Drawing.Size(200, 89);
74 this.textBox1.TabIndex = 3;
75 this.textBox1.Text = "IBBoard (http://ibboard.co.uk/devlog/)";
76 //
77 // textBox2
78 //
79 this.textBox2.Location = new System.Drawing.Point(80, 175);
80 this.textBox2.Multiline = true;
81 this.textBox2.Name = "textBox2";
82 this.textBox2.ReadOnly = true;
83 this.textBox2.Size = new System.Drawing.Size(200, 89);
84 this.textBox2.TabIndex = 5;
85 this.textBox2.Text = "Snowblizz\r\nFrostlee";
86 //
87 // lblThanks
88 //
89 this.lblThanks.AutoSize = true;
90 this.lblThanks.Location = new System.Drawing.Point(12, 175);
91 this.lblThanks.Name = "lblThanks";
92 this.lblThanks.Size = new System.Drawing.Size(51, 13);
93 this.lblThanks.TabIndex = 4;
94 this.lblThanks.Text = "thanks to";
95 //
96 // FrmAbout
97 //
98 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
99 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
100 this.ClientSize = new System.Drawing.Size(292, 270);
101 this.Controls.Add(this.textBox2);
102 this.Controls.Add(this.lblThanks);
103 this.Controls.Add(this.textBox1);
104 this.Controls.Add(this.lblDevelopers);
105 this.Controls.Add(this.lblVersion);
106 this.Controls.Add(this.lblWarFoundry);
107 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
108 this.MaximizeBox = false;
109 this.MinimizeBox = false;
110 this.Name = "FrmAbout";
111 this.Text = "FrmAbout";
112 this.ResumeLayout(false);
113 this.PerformLayout();
114
115 }
116
117 #endregion
118
119 private System.Windows.Forms.Label lblWarFoundry;
120 private System.Windows.Forms.Label lblVersion;
121 private IBBoard.Windows.Forms.IBBLabel lblDevelopers;
122 private System.Windows.Forms.TextBox textBox1;
123 private System.Windows.Forms.TextBox textBox2;
124 private IBBoard.Windows.Forms.IBBLabel lblThanks;
125 }
126 }