117 lines
5.1 KiB
C#
117 lines
5.1 KiB
C#
namespace All_Purpose_Auto_Setup
|
|
{
|
|
partial class frmAbout
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmAbout));
|
|
this.lblDescription = new System.Windows.Forms.Label();
|
|
this.btnOK = new System.Windows.Forms.Button();
|
|
this.lblAuthor = new System.Windows.Forms.Label();
|
|
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// lblDescription
|
|
//
|
|
this.lblDescription.AutoSize = true;
|
|
this.lblDescription.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.lblDescription.Location = new System.Drawing.Point(58, 130);
|
|
this.lblDescription.Name = "lblDescription";
|
|
this.lblDescription.Size = new System.Drawing.Size(76, 16);
|
|
this.lblDescription.TabIndex = 0;
|
|
this.lblDescription.Text = "Description";
|
|
//
|
|
// btnOK
|
|
//
|
|
this.btnOK.Location = new System.Drawing.Point(273, 156);
|
|
this.btnOK.Name = "btnOK";
|
|
this.btnOK.Size = new System.Drawing.Size(98, 31);
|
|
this.btnOK.TabIndex = 1;
|
|
this.btnOK.Text = "OK";
|
|
this.btnOK.UseVisualStyleBackColor = true;
|
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
|
//
|
|
// lblAuthor
|
|
//
|
|
this.lblAuthor.AutoSize = true;
|
|
this.lblAuthor.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.lblAuthor.Location = new System.Drawing.Point(9, 178);
|
|
this.lblAuthor.Name = "lblAuthor";
|
|
this.lblAuthor.Size = new System.Drawing.Size(56, 13);
|
|
this.lblAuthor.TabIndex = 2;
|
|
this.lblAuthor.Text = "Developer";
|
|
//
|
|
// pictureBox1
|
|
//
|
|
this.pictureBox1.Image = global::All_Purpose_Auto_Setup.Properties.Resources.sm3missile;
|
|
this.pictureBox1.Location = new System.Drawing.Point(0, 0);
|
|
this.pictureBox1.Name = "pictureBox1";
|
|
this.pictureBox1.Size = new System.Drawing.Size(383, 100);
|
|
this.pictureBox1.TabIndex = 3;
|
|
this.pictureBox1.TabStop = false;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label1.Location = new System.Drawing.Point(8, 103);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(227, 24);
|
|
this.label1.TabIndex = 4;
|
|
this.label1.Text = "All Purpose Auto Setup";
|
|
//
|
|
// frmAbout
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.SystemColors.ButtonHighlight;
|
|
this.ClientSize = new System.Drawing.Size(383, 196);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.pictureBox1);
|
|
this.Controls.Add(this.lblAuthor);
|
|
this.Controls.Add(this.btnOK);
|
|
this.Controls.Add(this.lblDescription);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "frmAbout";
|
|
this.Text = "About";
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label lblDescription;
|
|
private System.Windows.Forms.Button btnOK;
|
|
private System.Windows.Forms.Label lblAuthor;
|
|
private System.Windows.Forms.PictureBox pictureBox1;
|
|
private System.Windows.Forms.Label label1;
|
|
}
|
|
} |