markus / MarkusLogview / LICENSE_GENERATOR / Form1.Designer.cs @ 49a6d7c3
이력 | 보기 | 이력해설 | 다운로드 (3.06 KB)
1 |
namespace LICENSE_GENERATOR |
---|---|
2 |
{ |
3 |
partial class Form1 |
4 |
{ |
5 |
/// <summary> |
6 |
/// 필수 디자이너 변수입니다. |
7 |
/// </summary> |
8 |
private System.ComponentModel.IContainer components = null; |
9 |
|
10 |
/// <summary> |
11 |
/// 사용 중인 모든 리소스를 정리합니다. |
12 |
/// </summary> |
13 |
/// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param> |
14 |
protected override void Dispose(bool disposing) |
15 |
{ |
16 |
if (disposing && (components != null)) |
17 |
{ |
18 |
components.Dispose(); |
19 |
} |
20 |
base.Dispose(disposing); |
21 |
} |
22 |
|
23 |
#region Windows Form 디자이너에서 생성한 코드 |
24 |
|
25 |
/// <summary> |
26 |
/// 디자이너 지원에 필요한 메서드입니다. |
27 |
/// 이 메서드의 내용을 코드 편집기로 수정하지 마세요. |
28 |
/// </summary> |
29 |
private void InitializeComponent() |
30 |
{ |
31 |
this.button1 = new System.Windows.Forms.Button(); |
32 |
this.textBox1 = new System.Windows.Forms.TextBox(); |
33 |
this.label1 = new System.Windows.Forms.Label(); |
34 |
this.SuspendLayout(); |
35 |
// |
36 |
// button1 |
37 |
// |
38 |
this.button1.Location = new System.Drawing.Point(250, 64); |
39 |
this.button1.Name = "button1"; |
40 |
this.button1.Size = new System.Drawing.Size(75, 23); |
41 |
this.button1.TabIndex = 0; |
42 |
this.button1.Text = "Generate"; |
43 |
this.button1.UseVisualStyleBackColor = true; |
44 |
this.button1.Click += new System.EventHandler(this.button1_Click); |
45 |
// |
46 |
// textBox1 |
47 |
// |
48 |
this.textBox1.Location = new System.Drawing.Point(125, 37); |
49 |
this.textBox1.Name = "textBox1"; |
50 |
this.textBox1.Size = new System.Drawing.Size(200, 21); |
51 |
this.textBox1.TabIndex = 1; |
52 |
// |
53 |
// label1 |
54 |
// |
55 |
this.label1.AutoSize = true; |
56 |
this.label1.Location = new System.Drawing.Point(13, 42); |
57 |
this.label1.Name = "label1"; |
58 |
this.label1.Size = new System.Drawing.Size(87, 12); |
59 |
this.label1.TabIndex = 2; |
60 |
this.label1.Text = "License Count"; |
61 |
// |
62 |
// Form1 |
63 |
// |
64 |
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); |
65 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
66 |
this.ClientSize = new System.Drawing.Size(349, 120); |
67 |
this.Controls.Add(this.label1); |
68 |
this.Controls.Add(this.textBox1); |
69 |
this.Controls.Add(this.button1); |
70 |
this.Name = "Form1"; |
71 |
this.Text = "Form1"; |
72 |
this.Load += new System.EventHandler(this.Form1_Load); |
73 |
this.ResumeLayout(false); |
74 |
this.PerformLayout(); |
75 |
|
76 |
} |
77 |
|
78 |
#endregion |
79 |
|
80 |
private System.Windows.Forms.Button button1; |
81 |
private System.Windows.Forms.TextBox textBox1; |
82 |
private System.Windows.Forms.Label label1; |
83 |
} |
84 |
} |
85 |
|