Added an "About Zone Builder" tab to the About window

This commit is contained in:
MascaraSnake 2016-01-03 18:33:42 +01:00
parent 85c53c2d42
commit 3e9a3d91ea
6 changed files with 283 additions and 224 deletions

View File

@ -697,6 +697,8 @@
<EmbeddedResource Include="Resources\MissingTexture3D.png" /> <EmbeddedResource Include="Resources\MissingTexture3D.png" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<None Include="Resources\ZBLogo.bmp" />
<None Include="Resources\ZBLogo.png" />
<Content Include="ZB.ico" /> <Content Include="ZB.ico" />
<None Include="Resources\zonebuilder.png" /> <None Include="Resources\zonebuilder.png" />
<None Include="Resources\ZoneBuilder.bmp" /> <None Include="Resources\ZoneBuilder.bmp" />

View File

@ -1460,6 +1460,16 @@ namespace CodeImp.DoomBuilder.Properties {
} }
} }
/// <summary>
/// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap ZBLogo {
get {
object obj = ResourceManager.GetObject("ZBLogo", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary> /// <summary>
/// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
/// </summary> /// </summary>

View File

@ -547,4 +547,7 @@
<data name="zonebuilder" type="System.Resources.ResXFileRef, System.Windows.Forms"> <data name="zonebuilder" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\zonebuilder.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> <value>..\Resources\zonebuilder.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data> </data>
<data name="ZBLogo" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ZBLogo.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root> </root>

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -28,227 +28,268 @@ namespace CodeImp.DoomBuilder.Windows
/// </summary> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
System.Windows.Forms.Label label1; System.Windows.Forms.Label label1;
System.Windows.Forms.PictureBox pictureBox1; System.Windows.Forms.PictureBox pictureBox1;
System.Windows.Forms.PictureBox pictureBox3; System.Windows.Forms.PictureBox pictureBox3;
this.close = new System.Windows.Forms.Button(); this.close = new System.Windows.Forms.Button();
this.builderlink = new System.Windows.Forms.LinkLabel(); this.builderlink = new System.Windows.Forms.LinkLabel();
this.pictureBox2 = new System.Windows.Forms.PictureBox(); this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.codeimplink = new System.Windows.Forms.LinkLabel(); this.codeimplink = new System.Windows.Forms.LinkLabel();
this.tabControl1 = new System.Windows.Forms.TabControl(); this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage(); this.tabPage3 = new System.Windows.Forms.TabPage();
this.pictureBox4 = new System.Windows.Forms.PictureBox(); this.label2 = new System.Windows.Forms.Label();
this.gzdbLink = new System.Windows.Forms.LinkLabel(); this.copyversion = new System.Windows.Forms.Button();
this.copyversion = new System.Windows.Forms.Button(); this.version = new System.Windows.Forms.Label();
this.version = new System.Windows.Forms.Label(); this.pictureBox5 = new System.Windows.Forms.PictureBox();
this.tabPage2 = new System.Windows.Forms.TabPage(); this.tabPage1 = new System.Windows.Forms.TabPage();
label1 = new System.Windows.Forms.Label(); this.pictureBox4 = new System.Windows.Forms.PictureBox();
pictureBox1 = new System.Windows.Forms.PictureBox(); this.gzdbLink = new System.Windows.Forms.LinkLabel();
pictureBox3 = new System.Windows.Forms.PictureBox(); this.tabPage2 = new System.Windows.Forms.TabPage();
((System.ComponentModel.ISupportInitialize)(pictureBox1)).BeginInit(); label1 = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(pictureBox3)).BeginInit(); pictureBox1 = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); pictureBox3 = new System.Windows.Forms.PictureBox();
this.tabControl1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(pictureBox1)).BeginInit();
this.tabPage1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(pictureBox3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
this.tabPage2.SuspendLayout(); this.tabControl1.SuspendLayout();
this.SuspendLayout(); this.tabPage3.SuspendLayout();
// ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
// label1 this.tabPage1.SuspendLayout();
// ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
label1.FlatStyle = System.Windows.Forms.FlatStyle.System; this.tabPage2.SuspendLayout();
label1.Location = new System.Drawing.Point(11, 98); this.SuspendLayout();
label1.Name = "label1"; //
label1.Size = new System.Drawing.Size(349, 50); // label1
label1.TabIndex = 2; //
label1.Text = "Doom Builder is designed and programmed by Pascal vd Heiden.\r\nSeveral game config" + label1.FlatStyle = System.Windows.Forms.FlatStyle.System;
"urations were written by various members of the Doom community. See the website " + label1.Location = new System.Drawing.Point(11, 98);
"for a complete list of credits."; label1.Name = "label1";
// label1.Size = new System.Drawing.Size(349, 50);
// pictureBox1 label1.TabIndex = 2;
// label1.Text = "Doom Builder is designed and programmed by Pascal vd Heiden.\r\nSeveral game config" +
pictureBox1.Image = global::CodeImp.DoomBuilder.Properties.Resources.Splash3_small; "urations were written by various members of the Doom community. See the website " +
pictureBox1.Location = new System.Drawing.Point(6, 6); "for a complete list of credits.";
pictureBox1.Name = "pictureBox1"; //
pictureBox1.Size = new System.Drawing.Size(226, 80); // pictureBox1
pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize; //
pictureBox1.TabIndex = 0; pictureBox1.Image = global::CodeImp.DoomBuilder.Properties.Resources.Splash3_small;
pictureBox1.TabStop = false; pictureBox1.Location = new System.Drawing.Point(6, 6);
// pictureBox1.Name = "pictureBox1";
// pictureBox3 pictureBox1.Size = new System.Drawing.Size(226, 80);
// pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
pictureBox3.Image = global::CodeImp.DoomBuilder.Properties.Resources.GZDB_Logo_small; pictureBox1.TabIndex = 0;
pictureBox3.Location = new System.Drawing.Point(6, 6); pictureBox1.TabStop = false;
pictureBox3.Name = "pictureBox3"; //
pictureBox3.Size = new System.Drawing.Size(226, 80); // pictureBox3
pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize; //
pictureBox3.TabIndex = 12; pictureBox3.Image = global::CodeImp.DoomBuilder.Properties.Resources.GZDB_Logo_small;
pictureBox3.TabStop = false; pictureBox3.Location = new System.Drawing.Point(6, 6);
// pictureBox3.Name = "pictureBox3";
// close pictureBox3.Size = new System.Drawing.Size(226, 80);
// pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.close.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); pictureBox3.TabIndex = 12;
this.close.DialogResult = System.Windows.Forms.DialogResult.Cancel; pictureBox3.TabStop = false;
this.close.Location = new System.Drawing.Point(285, 245); //
this.close.Name = "close"; // close
this.close.Size = new System.Drawing.Size(116, 25); //
this.close.TabIndex = 5; this.close.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.close.Text = "Close"; this.close.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.close.UseVisualStyleBackColor = true; this.close.Location = new System.Drawing.Point(285, 245);
// this.close.Name = "close";
// builderlink this.close.Size = new System.Drawing.Size(116, 25);
// this.close.TabIndex = 5;
this.builderlink.ActiveLinkColor = System.Drawing.Color.Firebrick; this.close.Text = "Close";
this.builderlink.AutoSize = true; this.close.UseVisualStyleBackColor = true;
this.builderlink.LinkColor = System.Drawing.SystemColors.HotTrack; //
this.builderlink.Location = new System.Drawing.Point(8, 156); // builderlink
this.builderlink.Name = "builderlink"; //
this.builderlink.Size = new System.Drawing.Size(114, 13); this.builderlink.ActiveLinkColor = System.Drawing.Color.Firebrick;
this.builderlink.TabIndex = 3; this.builderlink.AutoSize = true;
this.builderlink.TabStop = true; this.builderlink.LinkColor = System.Drawing.SystemColors.HotTrack;
this.builderlink.Text = "www.doombuilder.com"; this.builderlink.Location = new System.Drawing.Point(8, 156);
this.builderlink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.builderlink_LinkClicked); this.builderlink.Name = "builderlink";
// this.builderlink.Size = new System.Drawing.Size(114, 13);
// pictureBox2 this.builderlink.TabIndex = 3;
// this.builderlink.TabStop = true;
this.pictureBox2.Image = global::CodeImp.DoomBuilder.Properties.Resources.CLogo; this.builderlink.Text = "www.doombuilder.com";
this.pictureBox2.Location = new System.Drawing.Point(289, 6); this.builderlink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.builderlink_LinkClicked);
this.pictureBox2.Name = "pictureBox2"; //
this.pictureBox2.Size = new System.Drawing.Size(88, 80); // pictureBox2
this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage; //
this.pictureBox2.TabIndex = 10; this.pictureBox2.Image = global::CodeImp.DoomBuilder.Properties.Resources.CLogo;
this.pictureBox2.TabStop = false; this.pictureBox2.Location = new System.Drawing.Point(289, 6);
// this.pictureBox2.Name = "pictureBox2";
// codeimplink this.pictureBox2.Size = new System.Drawing.Size(88, 80);
// this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.codeimplink.ActiveLinkColor = System.Drawing.Color.Firebrick; this.pictureBox2.TabIndex = 10;
this.codeimplink.AutoSize = true; this.pictureBox2.TabStop = false;
this.codeimplink.LinkColor = System.Drawing.SystemColors.HotTrack; //
this.codeimplink.Location = new System.Drawing.Point(8, 176); // codeimplink
this.codeimplink.Name = "codeimplink"; //
this.codeimplink.Size = new System.Drawing.Size(97, 13); this.codeimplink.ActiveLinkColor = System.Drawing.Color.Firebrick;
this.codeimplink.TabIndex = 4; this.codeimplink.AutoSize = true;
this.codeimplink.TabStop = true; this.codeimplink.LinkColor = System.Drawing.SystemColors.HotTrack;
this.codeimplink.Text = "www.codeimp.com"; this.codeimplink.Location = new System.Drawing.Point(8, 176);
this.codeimplink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.codeimplink_LinkClicked); this.codeimplink.Name = "codeimplink";
// this.codeimplink.Size = new System.Drawing.Size(97, 13);
// tabControl1 this.codeimplink.TabIndex = 4;
// this.codeimplink.TabStop = true;
this.tabControl1.Controls.Add(this.tabPage1); this.codeimplink.Text = "www.codeimp.com";
this.tabControl1.Controls.Add(this.tabPage2); this.codeimplink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.codeimplink_LinkClicked);
this.tabControl1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204))); //
this.tabControl1.Location = new System.Drawing.Point(12, 12); // tabControl1
this.tabControl1.Name = "tabControl1"; //
this.tabControl1.Padding = new System.Drawing.Point(24, 3); this.tabControl1.Controls.Add(this.tabPage3);
this.tabControl1.SelectedIndex = 0; this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Size = new System.Drawing.Size(391, 227); this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.TabIndex = 11; this.tabControl1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
// this.tabControl1.Location = new System.Drawing.Point(12, 12);
// tabPage1 this.tabControl1.Name = "tabControl1";
// this.tabControl1.Padding = new System.Drawing.Point(24, 3);
this.tabPage1.Controls.Add(pictureBox3); this.tabControl1.SelectedIndex = 0;
this.tabPage1.Controls.Add(this.pictureBox4); this.tabControl1.Size = new System.Drawing.Size(391, 227);
this.tabPage1.Controls.Add(this.gzdbLink); this.tabControl1.TabIndex = 11;
this.tabPage1.Controls.Add(this.copyversion); //
this.tabPage1.Controls.Add(this.version); // tabPage3
this.tabPage1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); //
this.tabPage1.Location = new System.Drawing.Point(4, 22); this.tabPage3.Controls.Add(this.label2);
this.tabPage1.Name = "tabPage1"; this.tabPage3.Controls.Add(this.copyversion);
this.tabPage1.Padding = new System.Windows.Forms.Padding(3); this.tabPage3.Controls.Add(this.version);
this.tabPage1.Size = new System.Drawing.Size(383, 201); this.tabPage3.Controls.Add(this.pictureBox5);
this.tabPage1.TabIndex = 0; this.tabPage3.Location = new System.Drawing.Point(4, 22);
this.tabPage1.Text = "About GZDoom Builder"; this.tabPage3.Name = "tabPage3";
this.tabPage1.UseVisualStyleBackColor = true; this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
// this.tabPage3.Size = new System.Drawing.Size(383, 201);
// pictureBox4 this.tabPage3.TabIndex = 2;
// this.tabPage3.Text = "About Zone Builder";
this.pictureBox4.Image = global::CodeImp.DoomBuilder.Properties.Resources.MLogo; this.tabPage3.UseVisualStyleBackColor = true;
this.pictureBox4.Location = new System.Drawing.Point(289, 6); //
this.pictureBox4.Name = "pictureBox4"; // label2
this.pictureBox4.Size = new System.Drawing.Size(88, 80); //
this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage; this.label2.AutoSize = true;
this.pictureBox4.TabIndex = 16; this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.pictureBox4.TabStop = false; this.label2.Location = new System.Drawing.Point(10, 144);
// this.label2.Name = "label2";
// gzdbLink this.label2.Size = new System.Drawing.Size(278, 13);
// this.label2.TabIndex = 16;
this.gzdbLink.AutoSize = true; this.label2.Text = "Zone Builder is developed by MascaraSnake and toaster.";
this.gzdbLink.LinkArea = new System.Windows.Forms.LinkArea(110, 152); //
this.gzdbLink.LinkColor = System.Drawing.SystemColors.HotTrack; // copyversion
this.gzdbLink.Location = new System.Drawing.Point(11, 136); //
this.gzdbLink.Name = "gzdbLink"; this.copyversion.Location = new System.Drawing.Point(266, 100);
this.gzdbLink.Size = new System.Drawing.Size(309, 42); this.copyversion.Name = "copyversion";
this.gzdbLink.TabIndex = 15; this.copyversion.Size = new System.Drawing.Size(108, 25);
this.gzdbLink.TabStop = true; this.copyversion.TabIndex = 15;
this.gzdbLink.Text = "GZDoom Builder is designed and programmed by MaxED.\r\nGZDoom Builder uses game con" + this.copyversion.Text = "Copy Version";
"figurations created by Gez.\r\nOfficial thread at ZDoom.org"; this.copyversion.UseVisualStyleBackColor = true;
this.gzdbLink.UseCompatibleTextRendering = true; this.copyversion.Click += new System.EventHandler(this.copyversion_Click);
this.gzdbLink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.gzdbLink_LinkClicked); //
// // version
// copyversion //
// this.version.AutoSize = true;
this.copyversion.Location = new System.Drawing.Point(269, 97); this.version.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.copyversion.Name = "copyversion"; this.version.Location = new System.Drawing.Point(10, 100);
this.copyversion.Size = new System.Drawing.Size(108, 25); this.version.Name = "version";
this.copyversion.TabIndex = 13; this.version.Size = new System.Drawing.Size(157, 13);
this.copyversion.Text = "Copy Version"; this.version.TabIndex = 14;
this.copyversion.UseVisualStyleBackColor = true; this.version.Text = "Zone Builder some version";
this.copyversion.Click += new System.EventHandler(this.copyversion_Click); //
// // pictureBox5
// version //
// this.pictureBox5.BackColor = System.Drawing.Color.Silver;
this.version.AutoSize = true; this.pictureBox5.Image = global::CodeImp.DoomBuilder.Properties.Resources.ZBLogo;
this.version.FlatStyle = System.Windows.Forms.FlatStyle.System; this.pictureBox5.Location = new System.Drawing.Point(6, 6);
this.version.Location = new System.Drawing.Point(11, 102); this.pictureBox5.Name = "pictureBox5";
this.version.Name = "version"; this.pictureBox5.Size = new System.Drawing.Size(226, 80);
this.version.Size = new System.Drawing.Size(150, 13); this.pictureBox5.TabIndex = 0;
this.version.TabIndex = 11; this.pictureBox5.TabStop = false;
this.version.Text = "GZDoom Builder some version"; //
// // tabPage1
// tabPage2 //
// this.tabPage1.Controls.Add(pictureBox3);
this.tabPage2.Controls.Add(pictureBox1); this.tabPage1.Controls.Add(this.pictureBox4);
this.tabPage2.Controls.Add(this.codeimplink); this.tabPage1.Controls.Add(this.gzdbLink);
this.tabPage2.Controls.Add(label1); this.tabPage1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.tabPage2.Controls.Add(this.pictureBox2); this.tabPage1.Location = new System.Drawing.Point(4, 22);
this.tabPage2.Controls.Add(this.builderlink); this.tabPage1.Name = "tabPage1";
this.tabPage2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Location = new System.Drawing.Point(4, 22); this.tabPage1.Size = new System.Drawing.Size(383, 201);
this.tabPage2.Name = "tabPage2"; this.tabPage1.TabIndex = 0;
this.tabPage2.Padding = new System.Windows.Forms.Padding(3); this.tabPage1.Text = "About GZDoom Builder";
this.tabPage2.Size = new System.Drawing.Size(383, 201); this.tabPage1.UseVisualStyleBackColor = true;
this.tabPage2.TabIndex = 1; //
this.tabPage2.Text = "About Doom Builder"; // pictureBox4
this.tabPage2.UseVisualStyleBackColor = true; //
// this.pictureBox4.Image = global::CodeImp.DoomBuilder.Properties.Resources.MLogo;
// AboutForm this.pictureBox4.Location = new System.Drawing.Point(289, 6);
// this.pictureBox4.Name = "pictureBox4";
this.AcceptButton = this.close; this.pictureBox4.Size = new System.Drawing.Size(88, 80);
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.pictureBox4.TabIndex = 16;
this.CancelButton = this.close; this.pictureBox4.TabStop = false;
this.ClientSize = new System.Drawing.Size(413, 277); //
this.Controls.Add(this.tabControl1); // gzdbLink
this.Controls.Add(this.close); //
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.gzdbLink.AutoSize = true;
this.MaximizeBox = false; this.gzdbLink.LinkArea = new System.Windows.Forms.LinkArea(110, 152);
this.MinimizeBox = false; this.gzdbLink.LinkColor = System.Drawing.SystemColors.HotTrack;
this.Name = "AboutForm"; this.gzdbLink.Location = new System.Drawing.Point(11, 136);
this.Opacity = 1; this.gzdbLink.Name = "gzdbLink";
this.ShowIcon = false; this.gzdbLink.Size = new System.Drawing.Size(309, 42);
this.ShowInTaskbar = false; this.gzdbLink.TabIndex = 15;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.gzdbLink.TabStop = true;
this.Text = "About"; this.gzdbLink.Text = "GZDoom Builder is designed and programmed by MaxED.\r\nGZDoom Builder uses game con" +
((System.ComponentModel.ISupportInitialize)(pictureBox1)).EndInit(); "figurations created by Gez.\r\nOfficial thread at ZDoom.org";
((System.ComponentModel.ISupportInitialize)(pictureBox3)).EndInit(); this.gzdbLink.UseCompatibleTextRendering = true;
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); this.gzdbLink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.gzdbLink_LinkClicked);
this.tabControl1.ResumeLayout(false); //
this.tabPage1.ResumeLayout(false); // tabPage2
this.tabPage1.PerformLayout(); //
((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit(); this.tabPage2.Controls.Add(pictureBox1);
this.tabPage2.ResumeLayout(false); this.tabPage2.Controls.Add(this.codeimplink);
this.tabPage2.PerformLayout(); this.tabPage2.Controls.Add(label1);
this.ResumeLayout(false); this.tabPage2.Controls.Add(this.pictureBox2);
this.tabPage2.Controls.Add(this.builderlink);
this.tabPage2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.tabPage2.Location = new System.Drawing.Point(4, 22);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(383, 201);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "About Doom Builder";
this.tabPage2.UseVisualStyleBackColor = true;
//
// AboutForm
//
this.AcceptButton = this.close;
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.CancelButton = this.close;
this.ClientSize = new System.Drawing.Size(413, 277);
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.close);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "AboutForm";
this.Opacity = 1D;
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "About";
((System.ComponentModel.ISupportInitialize)(pictureBox1)).EndInit();
((System.ComponentModel.ISupportInitialize)(pictureBox3)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
this.tabControl1.ResumeLayout(false);
this.tabPage3.ResumeLayout(false);
this.tabPage3.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
this.tabPage1.ResumeLayout(false);
this.tabPage1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
this.tabPage2.ResumeLayout(false);
this.tabPage2.PerformLayout();
this.ResumeLayout(false);
} }
@ -262,8 +303,11 @@ namespace CodeImp.DoomBuilder.Windows
private System.Windows.Forms.TabPage tabPage1; private System.Windows.Forms.TabPage tabPage1;
private System.Windows.Forms.PictureBox pictureBox4; private System.Windows.Forms.PictureBox pictureBox4;
private System.Windows.Forms.LinkLabel gzdbLink; private System.Windows.Forms.LinkLabel gzdbLink;
private System.Windows.Forms.Button copyversion;
private System.Windows.Forms.Label version;
private System.Windows.Forms.TabPage tabPage2; private System.Windows.Forms.TabPage tabPage2;
} private System.Windows.Forms.TabPage tabPage3;
private System.Windows.Forms.PictureBox pictureBox5;
private System.Windows.Forms.Label version;
private System.Windows.Forms.Button copyversion;
private System.Windows.Forms.Label label2;
}
} }