MainForm.Designer.cs
5.4 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
namespace flowchart
{
partial class MainForm
{
/// <summary>
/// 필수 디자이너 변수입니다.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 사용 중인 모든 리소스를 정리합니다.
/// </summary>
/// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form 디자이너에서 생성한 코드
/// <summary>
/// 디자이너 지원에 필요한 메서드입니다.
/// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
/// </summary>
private void InitializeComponent()
{
this.btn_default = new System.Windows.Forms.Button();
this.btn_rectangle = new System.Windows.Forms.Button();
this.btn_rhombus = new System.Windows.Forms.Button();
this.btn_linkline = new System.Windows.Forms.Button();
this.CustomPanel = new flowchart.CustomPanel();
this.btn_parallelogram = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// btn_default
//
this.btn_default.Location = new System.Drawing.Point(34, 33);
this.btn_default.Name = "btn_default";
this.btn_default.Size = new System.Drawing.Size(105, 31);
this.btn_default.TabIndex = 0;
this.btn_default.Text = "default";
this.btn_default.UseVisualStyleBackColor = true;
this.btn_default.Click += new System.EventHandler(this.btn_default_Click_1);
//
// btn_rectangle
//
this.btn_rectangle.Location = new System.Drawing.Point(34, 155);
this.btn_rectangle.Name = "btn_rectangle";
this.btn_rectangle.Size = new System.Drawing.Size(105, 31);
this.btn_rectangle.TabIndex = 1;
this.btn_rectangle.Text = "process";
this.btn_rectangle.UseVisualStyleBackColor = true;
this.btn_rectangle.Click += new System.EventHandler(this.btn_rectangle_Click_1);
//
// btn_rhombus
//
this.btn_rhombus.Location = new System.Drawing.Point(34, 201);
this.btn_rhombus.Name = "btn_rhombus";
this.btn_rhombus.Size = new System.Drawing.Size(105, 31);
this.btn_rhombus.TabIndex = 2;
this.btn_rhombus.Text = "if";
this.btn_rhombus.UseVisualStyleBackColor = true;
this.btn_rhombus.Click += new System.EventHandler(this.btn_rhombus_Click_1);
//
// btn_linkline
//
this.btn_linkline.Location = new System.Drawing.Point(34, 256);
this.btn_linkline.Name = "btn_linkline";
this.btn_linkline.Size = new System.Drawing.Size(105, 31);
this.btn_linkline.TabIndex = 3;
this.btn_linkline.Text = "link line";
this.btn_linkline.UseVisualStyleBackColor = true;
this.btn_linkline.Click += new System.EventHandler(this.btn_linkline_Click);
//
// CustomPanel
//
this.CustomPanel.BackColor = System.Drawing.SystemColors.ActiveBorder;
this.CustomPanel.FigName = null;
this.CustomPanel.Location = new System.Drawing.Point(174, 10);
this.CustomPanel.Name = "CustomPanel";
this.CustomPanel.Size = new System.Drawing.Size(707, 533);
this.CustomPanel.State = null;
this.CustomPanel.TabIndex = 0;
//
// btn_parallelogram
//
this.btn_parallelogram.Location = new System.Drawing.Point(34, 105);
this.btn_parallelogram.Name = "btn_parallelogram";
this.btn_parallelogram.Size = new System.Drawing.Size(105, 31);
this.btn_parallelogram.TabIndex = 4;
this.btn_parallelogram.Text = "input";
this.btn_parallelogram.UseVisualStyleBackColor = true;
this.btn_parallelogram.Click += new System.EventHandler(this.btn_parallelogram_Click);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(886, 547);
this.Controls.Add(this.btn_parallelogram);
this.Controls.Add(this.btn_linkline);
this.Controls.Add(this.btn_rhombus);
this.Controls.Add(this.btn_rectangle);
this.Controls.Add(this.btn_default);
this.Controls.Add(this.CustomPanel);
this.Name = "MainForm";
this.Text = "flowchart";
this.ResumeLayout(false);
}
#endregion
private CustomPanel CustomPanel;
private System.Windows.Forms.Button btn_default;
private System.Windows.Forms.Button btn_rectangle;
private System.Windows.Forms.Button btn_rhombus;
private System.Windows.Forms.Button btn_linkline;
private System.Windows.Forms.Button btn_parallelogram;
}
}