Branding!
This commit is contained in:
parent
bab70e73f6
commit
6650683d55
1 changed files with 17 additions and 2 deletions
19
unlock.Designer.cs
generated
19
unlock.Designer.cs
generated
|
@ -33,6 +33,7 @@
|
||||||
this.textBox2 = new System.Windows.Forms.TextBox();
|
this.textBox2 = new System.Windows.Forms.TextBox();
|
||||||
this.label2 = new System.Windows.Forms.Label();
|
this.label2 = new System.Windows.Forms.Label();
|
||||||
this.unlockButton = new System.Windows.Forms.Button();
|
this.unlockButton = new System.Windows.Forms.Button();
|
||||||
|
this.infoLabel = new System.Windows.Forms.Label();
|
||||||
this.SuspendLayout();
|
this.SuspendLayout();
|
||||||
//
|
//
|
||||||
// licenceInput
|
// licenceInput
|
||||||
|
@ -42,6 +43,7 @@
|
||||||
this.licenceInput.Name = "licenceInput";
|
this.licenceInput.Name = "licenceInput";
|
||||||
this.licenceInput.Size = new System.Drawing.Size(283, 27);
|
this.licenceInput.Size = new System.Drawing.Size(283, 27);
|
||||||
this.licenceInput.TabIndex = 0;
|
this.licenceInput.TabIndex = 0;
|
||||||
|
this.licenceInput.TextChanged += new System.EventHandler(this.licenceInput_TextChanged);
|
||||||
//
|
//
|
||||||
// label1
|
// label1
|
||||||
//
|
//
|
||||||
|
@ -87,22 +89,34 @@
|
||||||
this.unlockButton.UseVisualStyleBackColor = true;
|
this.unlockButton.UseVisualStyleBackColor = true;
|
||||||
this.unlockButton.Click += new System.EventHandler(this.button1_Click);
|
this.unlockButton.Click += new System.EventHandler(this.button1_Click);
|
||||||
//
|
//
|
||||||
|
// infoLabel
|
||||||
|
//
|
||||||
|
this.infoLabel.AutoSize = true;
|
||||||
|
this.infoLabel.Cursor = System.Windows.Forms.Cursors.Hand;
|
||||||
|
this.infoLabel.Location = new System.Drawing.Point(12, 177);
|
||||||
|
this.infoLabel.Name = "infoLabel";
|
||||||
|
this.infoLabel.Size = new System.Drawing.Size(172, 13);
|
||||||
|
this.infoLabel.TabIndex = 5;
|
||||||
|
this.infoLabel.Text = "Created by TheOrangeOne - About";
|
||||||
|
this.infoLabel.Click += new System.EventHandler(this.infoLabel_Click);
|
||||||
|
//
|
||||||
// unlock
|
// unlock
|
||||||
//
|
//
|
||||||
this.AcceptButton = this.unlockButton;
|
this.AcceptButton = this.unlockButton;
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||||
this.ClientSize = new System.Drawing.Size(430, 186);
|
this.ClientSize = new System.Drawing.Size(430, 195);
|
||||||
|
this.Controls.Add(this.infoLabel);
|
||||||
this.Controls.Add(this.unlockButton);
|
this.Controls.Add(this.unlockButton);
|
||||||
this.Controls.Add(this.label2);
|
this.Controls.Add(this.label2);
|
||||||
this.Controls.Add(this.textBox2);
|
this.Controls.Add(this.textBox2);
|
||||||
this.Controls.Add(this.label1);
|
this.Controls.Add(this.label1);
|
||||||
this.Controls.Add(this.licenceInput);
|
this.Controls.Add(this.licenceInput);
|
||||||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
|
||||||
this.MaximizeBox = false;
|
this.MaximizeBox = false;
|
||||||
this.Name = "unlock";
|
this.Name = "unlock";
|
||||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||||
this.Text = "Pithos - Unlock";
|
this.Text = "Pithos - Unlock";
|
||||||
this.Load += new System.EventHandler(this.unlock_Load);
|
|
||||||
this.ResumeLayout(false);
|
this.ResumeLayout(false);
|
||||||
this.PerformLayout();
|
this.PerformLayout();
|
||||||
|
|
||||||
|
@ -115,6 +129,7 @@
|
||||||
private System.Windows.Forms.TextBox textBox2;
|
private System.Windows.Forms.TextBox textBox2;
|
||||||
private System.Windows.Forms.Label label2;
|
private System.Windows.Forms.Label label2;
|
||||||
public System.Windows.Forms.Button unlockButton;
|
public System.Windows.Forms.Button unlockButton;
|
||||||
|
private System.Windows.Forms.Label infoLabel;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue