-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLineInputForm.Designer.cs
More file actions
95 lines (89 loc) · 2.41 KB
/
Copy pathLineInputForm.Designer.cs
File metadata and controls
95 lines (89 loc) · 2.41 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
namespace QsHfs;
partial class LineInputForm
{
/// <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()
{
TextLine = new TextBox();
BtnOk = new Button();
BtnCancel = new Button();
SuspendLayout();
//
// TextLine
//
TextLine.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
TextLine.Location = new Point(12, 12);
TextLine.Name = "TextLine";
TextLine.Size = new Size(460, 27);
TextLine.TabIndex = 0;
//
// BtnOk
//
BtnOk.Anchor = AnchorStyles.Top | AnchorStyles.Right;
BtnOk.DialogResult = DialogResult.OK;
BtnOk.Location = new Point(372, 45);
BtnOk.Name = "BtnOk";
BtnOk.Size = new Size(100, 36);
BtnOk.TabIndex = 1;
BtnOk.Text = "결정 (&O)";
BtnOk.UseVisualStyleBackColor = true;
//
// BtnCancel
//
BtnCancel.DialogResult = DialogResult.Cancel;
BtnCancel.Location = new Point(12, 45);
BtnCancel.Name = "BtnCancel";
BtnCancel.Size = new Size(100, 36);
BtnCancel.TabIndex = 2;
BtnCancel.Text = "취소 (&C)";
BtnCancel.UseVisualStyleBackColor = true;
//
// LineInputForm
//
AcceptButton = BtnOk;
AutoScaleDimensions = new SizeF(9F, 20F);
AutoScaleMode = AutoScaleMode.Font;
CancelButton = BtnCancel;
ClientSize = new Size(484, 91);
Controls.Add(BtnCancel);
Controls.Add(BtnOk);
Controls.Add(TextLine);
Font = new Font("맑은 고딕", 11.25F, FontStyle.Regular, GraphicsUnit.Point, 129);
Margin = new Padding(4);
MaximizeBox = false;
MaximumSize = new Size(10000, 130);
MinimizeBox = false;
MinimumSize = new Size(300, 130);
Name = "LineInputForm";
ShowIcon = false;
ShowInTaskbar = false;
StartPosition = FormStartPosition.CenterParent;
Text = "문장 입력";
ResumeLayout(false);
PerformLayout();
}
#endregion
private TextBox TextLine;
private Button BtnOk;
private Button BtnCancel;
}