mirror of
https://github.com/abrendan/smolEdit.git
synced 2025-06-16 20:55:01 +02:00
93 lines
3.9 KiB
C#
93 lines
3.9 KiB
C#
namespace V_EditorPro
|
|
{
|
|
partial class AboutForm
|
|
{
|
|
private System.ComponentModel.IContainer components = null;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.PictureBox pictureBox1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Button closeButton;
|
|
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutForm));
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.closeButton = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(20, 150);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(63, 39);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "V_EditorPro\nVersion 1.0\nOS: ";
|
|
//
|
|
// pictureBox1
|
|
//
|
|
this.pictureBox1.Image = global::V_EditorPro.Properties.Resources.Veditorproicon;
|
|
this.pictureBox1.Location = new System.Drawing.Point(55, 12);
|
|
this.pictureBox1.Name = "pictureBox1";
|
|
this.pictureBox1.Size = new System.Drawing.Size(100, 100);
|
|
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
|
|
this.pictureBox1.TabIndex = 1;
|
|
this.pictureBox1.TabStop = false;
|
|
this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(20, 130);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(170, 13);
|
|
this.label2.TabIndex = 2;
|
|
this.label2.Text = "V_EditorPro is made with .NET 4.8";
|
|
//
|
|
// closeButton
|
|
//
|
|
this.closeButton.Location = new System.Drawing.Point(65, 216);
|
|
this.closeButton.Name = "closeButton";
|
|
this.closeButton.Size = new System.Drawing.Size(75, 23);
|
|
this.closeButton.TabIndex = 3;
|
|
this.closeButton.Text = "Close";
|
|
this.closeButton.UseVisualStyleBackColor = true;
|
|
this.closeButton.Click += new System.EventHandler(this.CloseButton_Click);
|
|
//
|
|
// AboutForm
|
|
//
|
|
this.ClientSize = new System.Drawing.Size(209, 271);
|
|
this.Controls.Add(this.closeButton);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.pictureBox1);
|
|
this.Controls.Add(this.label1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "AboutForm";
|
|
this.Text = "About V_EditorPro";
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
private void CloseButton_Click(object sender, System.EventArgs e)
|
|
{
|
|
this.Close();
|
|
}
|
|
}
|
|
} |