-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.Designer.cs
113 lines (108 loc) · 4.39 KB
/
Form1.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
namespace EsetKeyGenerator
{
partial class Form1
{
/// <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(Form1));
button1 = new Button();
textBox1 = new TextBox();
linkLabel1 = new LinkLabel();
numericUpDown1 = new NumericUpDown();
((System.ComponentModel.ISupportInitialize)numericUpDown1).BeginInit();
SuspendLayout();
//
// button1
//
button1.Font = new Font("Segoe UI Semibold", 14.25F, FontStyle.Bold | FontStyle.Italic, GraphicsUnit.Point, 204);
button1.Location = new Point(95, 129);
button1.Name = "button1";
button1.Size = new Size(195, 47);
button1.TabIndex = 0;
button1.Text = "Generate!";
button1.UseVisualStyleBackColor = true;
button1.Click += button1_Click;
//
// textBox1
//
textBox1.BorderStyle = BorderStyle.FixedSingle;
textBox1.Font = new Font("Segoe UI Semibold", 12F, FontStyle.Bold, GraphicsUnit.Point, 204);
textBox1.Location = new Point(52, 94);
textBox1.Name = "textBox1";
textBox1.ReadOnly = true;
textBox1.Size = new Size(281, 29);
textBox1.TabIndex = 1;
textBox1.TextAlign = HorizontalAlignment.Center;
//
// linkLabel1
//
linkLabel1.AutoSize = true;
linkLabel1.Cursor = Cursors.Hand;
linkLabel1.Font = new Font("Segoe UI Black", 15.75F, FontStyle.Bold, GraphicsUnit.Point, 204);
linkLabel1.LinkBehavior = LinkBehavior.NeverUnderline;
linkLabel1.Location = new Point(281, 9);
linkLabel1.Name = "linkLabel1";
linkLabel1.Size = new Size(86, 30);
linkLabel1.TabIndex = 2;
linkLabel1.TabStop = true;
linkLabel1.Text = "GitHub";
linkLabel1.LinkClicked += linkLabel1_LinkClicked;
//
// numericUpDown1
//
numericUpDown1.Location = new Point(52, 129);
numericUpDown1.Maximum = new decimal(new int[] { 10, 0, 0, 0 });
numericUpDown1.Minimum = new decimal(new int[] { 1, 0, 0, 0 });
numericUpDown1.Name = "numericUpDown1";
numericUpDown1.Size = new Size(31, 23);
numericUpDown1.TabIndex = 3;
numericUpDown1.Value = new decimal(new int[] { 1, 0, 0, 0 });
numericUpDown1.ValueChanged += numericUpDown1_ValueChanged;
//
// Form1
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(379, 188);
Controls.Add(numericUpDown1);
Controls.Add(linkLabel1);
Controls.Add(textBox1);
Controls.Add(button1);
FormBorderStyle = FormBorderStyle.FixedSingle;
Icon = (Icon)resources.GetObject("$this.Icon");
MaximizeBox = false;
Name = "Form1";
StartPosition = FormStartPosition.CenterScreen;
Text = "EsetKeyGenerator";
((System.ComponentModel.ISupportInitialize)numericUpDown1).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button button1;
private TextBox textBox1;
private LinkLabel linkLabel1;
private NumericUpDown numericUpDown1;
}
}