mirror of
https://github.com/JonasNilson/idle_master_extended.git
synced 2025-05-12 02:46:39 +02:00
114 lines
No EOL
4.9 KiB
C#
114 lines
No EOL
4.9 KiB
C#
using System.ComponentModel;
|
|
using System.Windows.Forms;
|
|
|
|
namespace IdleMasterExtended
|
|
{
|
|
partial class frmAbout
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private 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.btnOK = new System.Windows.Forms.Button();
|
|
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.linkLabelVersion = new System.Windows.Forms.LinkLabel();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// btnOK
|
|
//
|
|
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnOK.Location = new System.Drawing.Point(192, 129);
|
|
this.btnOK.Name = "btnOK";
|
|
this.btnOK.Size = new System.Drawing.Size(75, 23);
|
|
this.btnOK.TabIndex = 0;
|
|
this.btnOK.Text = "&OK";
|
|
this.btnOK.UseVisualStyleBackColor = true;
|
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
|
//
|
|
// pictureBox1
|
|
//
|
|
this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
|
|
this.pictureBox1.Location = new System.Drawing.Point(12, 12);
|
|
this.pictureBox1.Name = "pictureBox1";
|
|
this.pictureBox1.Size = new System.Drawing.Size(255, 111);
|
|
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
|
|
this.pictureBox1.TabIndex = 1;
|
|
this.pictureBox1.TabStop = false;
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(13, 139);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(134, 13);
|
|
this.label2.TabIndex = 3;
|
|
this.label2.Text = "by jshackles + JonasNilson";
|
|
//
|
|
// linkLabelVersion
|
|
//
|
|
this.linkLabelVersion.AutoSize = true;
|
|
this.linkLabelVersion.Location = new System.Drawing.Point(13, 126);
|
|
this.linkLabelVersion.Name = "linkLabelVersion";
|
|
this.linkLabelVersion.Size = new System.Drawing.Size(107, 13);
|
|
this.linkLabelVersion.TabIndex = 4;
|
|
this.linkLabelVersion.TabStop = true;
|
|
this.linkLabelVersion.Text = "Idle Master Extended";
|
|
this.linkLabelVersion.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelVersion_LinkClicked);
|
|
//
|
|
// frmAbout
|
|
//
|
|
this.AcceptButton = this.btnOK;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(272, 159);
|
|
this.Controls.Add(this.linkLabelVersion);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.pictureBox1);
|
|
this.Controls.Add(this.btnOK);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.Name = "frmAbout";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "About Idle Master Extended";
|
|
this.Load += new System.EventHandler(this.frmAbout_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button btnOK;
|
|
private PictureBox pictureBox1;
|
|
private Label label2;
|
|
private LinkLabel linkLabelVersion;
|
|
}
|
|
} |