-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.Designer.cs
More file actions
199 lines (192 loc) · 8.34 KB
/
Main.Designer.cs
File metadata and controls
199 lines (192 loc) · 8.34 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
namespace CreateShortGuid
{
partial class Main
{
/// <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()
{
this.Copy = new System.Windows.Forms.Button();
this.New = new System.Windows.Forms.Button();
this.Exit = new System.Windows.Forms.Button();
this.Result = new System.Windows.Forms.GroupBox();
this.lResult = new System.Windows.Forms.Label();
this.Help = new System.Windows.Forms.Label();
this.Format = new System.Windows.Forms.GroupBox();
this.format3 = new System.Windows.Forms.RadioButton();
this.format1 = new System.Windows.Forms.RadioButton();
this.format2 = new System.Windows.Forms.RadioButton();
this.tbShortGuid = new System.Windows.Forms.TextBox();
this.Result.SuspendLayout();
this.Format.SuspendLayout();
this.SuspendLayout();
//
// Copy
//
this.Copy.Location = new System.Drawing.Point(270, 12);
this.Copy.Name = "Copy";
this.Copy.Size = new System.Drawing.Size(75, 23);
this.Copy.TabIndex = 0;
this.Copy.Text = "Copy";
this.Copy.UseVisualStyleBackColor = true;
this.Copy.Click += new System.EventHandler(this.Copy_Click);
//
// New
//
this.New.Location = new System.Drawing.Point(270, 41);
this.New.Name = "New";
this.New.Size = new System.Drawing.Size(75, 23);
this.New.TabIndex = 0;
this.New.Text = "New GUID";
this.New.UseVisualStyleBackColor = true;
this.New.Click += new System.EventHandler(this.New_Click);
//
// Exit
//
this.Exit.Location = new System.Drawing.Point(270, 70);
this.Exit.Name = "Exit";
this.Exit.Size = new System.Drawing.Size(75, 23);
this.Exit.TabIndex = 0;
this.Exit.Text = "Exit";
this.Exit.UseVisualStyleBackColor = true;
this.Exit.Click += new System.EventHandler(this.Exit_Click);
//
// Result
//
this.Result.Controls.Add(this.lResult);
this.Result.Location = new System.Drawing.Point(12, 200);
this.Result.Name = "Result";
this.Result.Size = new System.Drawing.Size(333, 100);
this.Result.TabIndex = 1;
this.Result.TabStop = false;
this.Result.Text = "Result";
//
// lResult
//
this.lResult.Location = new System.Drawing.Point(6, 16);
this.lResult.Name = "lResult";
this.lResult.Size = new System.Drawing.Size(321, 81);
this.lResult.TabIndex = 0;
this.lResult.Text = "lResult";
//
// Help
//
this.Help.Location = new System.Drawing.Point(12, 9);
this.Help.Name = "Help";
this.Help.Size = new System.Drawing.Size(252, 55);
this.Help.TabIndex = 1;
this.Help.Text = "Выберите форматирование и нажмите «Copy» для помещения результата в буфер обмена." +
" Выберете «Exit» для завершения.";
//
// Format
//
this.Format.Controls.Add(this.format3);
this.Format.Controls.Add(this.format1);
this.Format.Controls.Add(this.format2);
this.Format.Location = new System.Drawing.Point(12, 67);
this.Format.Name = "Format";
this.Format.Size = new System.Drawing.Size(252, 127);
this.Format.TabIndex = 2;
this.Format.TabStop = false;
this.Format.Text = "ShoertGuid Format";
//
// format3
//
this.format3.AutoSize = true;
this.format3.Location = new System.Drawing.Point(9, 65);
this.format3.Name = "format3";
this.format3.Size = new System.Drawing.Size(205, 17);
this.format3.TabIndex = 0;
this.format3.TabStop = true;
this.format3.Text = "3. static const struct ShortGuid = { ... }";
this.format3.UseVisualStyleBackColor = true;
this.format3.CheckedChanged += new System.EventHandler(this.format3_CheckedChanged);
//
// format1
//
this.format1.AutoSize = true;
this.format1.Location = new System.Drawing.Point(9, 19);
this.format1.Name = "format1";
this.format1.Size = new System.Drawing.Size(176, 17);
this.format1.TabIndex = 0;
this.format1.TabStop = true;
this.format1.Text = "1. Only Value (ie. \"xxxx ... xxxx\")";
this.format1.UseVisualStyleBackColor = true;
this.format1.CheckedChanged += new System.EventHandler(this.format1_CheckedChanged);
//
// format2
//
this.format2.AutoSize = true;
this.format2.Location = new System.Drawing.Point(9, 42);
this.format2.Name = "format2";
this.format2.Size = new System.Drawing.Size(237, 17);
this.format2.TabIndex = 0;
this.format2.TabStop = true;
this.format2.Text = "2. Registry Format (ie. {xxxxxxx-xxxx ... xxxx })";
this.format2.UseVisualStyleBackColor = true;
this.format2.CheckedChanged += new System.EventHandler(this.format2_CheckedChanged);
//
// tbShortGuid
//
this.tbShortGuid.Location = new System.Drawing.Point(12, 306);
this.tbShortGuid.Name = "tbShortGuid";
this.tbShortGuid.Size = new System.Drawing.Size(252, 20);
this.tbShortGuid.TabIndex = 3;
this.tbShortGuid.TextChanged += new System.EventHandler(this.tbShortGuid_TextChanged);
//
// Main
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(357, 332);
this.Controls.Add(this.tbShortGuid);
this.Controls.Add(this.Format);
this.Controls.Add(this.Help);
this.Controls.Add(this.Result);
this.Controls.Add(this.Exit);
this.Controls.Add(this.New);
this.Controls.Add(this.Copy);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "Main";
this.Text = "Create ShortGuid";
this.Load += new System.EventHandler(this.Form1_Load);
this.Result.ResumeLayout(false);
this.Format.ResumeLayout(false);
this.Format.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button Copy;
private System.Windows.Forms.Button New;
private System.Windows.Forms.Button Exit;
private System.Windows.Forms.GroupBox Result;
private System.Windows.Forms.Label lResult;
private System.Windows.Forms.Label Help;
private System.Windows.Forms.GroupBox Format;
private System.Windows.Forms.RadioButton format2;
private System.Windows.Forms.RadioButton format3;
private System.Windows.Forms.RadioButton format1;
private System.Windows.Forms.TextBox tbShortGuid;
}
}