-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDisaplyWords.Designer.cs
122 lines (117 loc) · 6.04 KB
/
DisaplyWords.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
114
115
116
117
118
119
120
121
122
namespace WindowsFormsApplication1
{
partial class DisaplyWords
{
/// <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(DisaplyWords));
this.answer_btn = new System.Windows.Forms.Button();
this.repick_btn = new System.Windows.Forms.Button();
this.close = new System.Windows.Forms.Button();
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.SuspendLayout();
//
// answer_btn
//
this.answer_btn.BackColor = System.Drawing.SystemColors.HotTrack;
this.answer_btn.Cursor = System.Windows.Forms.Cursors.Hand;
this.answer_btn.Font = new System.Drawing.Font("굴림", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
this.answer_btn.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
this.answer_btn.Location = new System.Drawing.Point(35, 45);
this.answer_btn.Name = "answer_btn";
this.answer_btn.Size = new System.Drawing.Size(226, 75);
this.answer_btn.TabIndex = 1;
this.answer_btn.Text = "답 보기";
this.answer_btn.UseVisualStyleBackColor = false;
this.answer_btn.Click += new System.EventHandler(this.answer_btn_Click);
//
// repick_btn
//
this.repick_btn.BackColor = System.Drawing.SystemColors.HotTrack;
this.repick_btn.Cursor = System.Windows.Forms.Cursors.Hand;
this.repick_btn.Font = new System.Drawing.Font("굴림", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
this.repick_btn.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
this.repick_btn.Location = new System.Drawing.Point(35, 149);
this.repick_btn.Name = "repick_btn";
this.repick_btn.Size = new System.Drawing.Size(226, 75);
this.repick_btn.TabIndex = 2;
this.repick_btn.Text = "다시 뽑기";
this.repick_btn.UseVisualStyleBackColor = false;
this.repick_btn.Click += new System.EventHandler(this.repick_btn_Click);
//
// close
//
this.close.BackColor = System.Drawing.SystemColors.HotTrack;
this.close.Cursor = System.Windows.Forms.Cursors.Hand;
this.close.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.close.Font = new System.Drawing.Font("굴림", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
this.close.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
this.close.Location = new System.Drawing.Point(35, 254);
this.close.Name = "close";
this.close.Size = new System.Drawing.Size(226, 75);
this.close.TabIndex = 3;
this.close.Text = "닫기";
this.close.UseVisualStyleBackColor = false;
this.close.Click += new System.EventHandler(this.close_Click);
//
// richTextBox1
//
this.richTextBox1.Font = new System.Drawing.Font("굴림", 28F);
this.richTextBox1.Location = new System.Drawing.Point(300, 12);
this.richTextBox1.MaximumSize = new System.Drawing.Size(524, 994);
this.richTextBox1.MinimumSize = new System.Drawing.Size(524, 994);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.ReadOnly = true;
this.richTextBox1.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
this.richTextBox1.Size = new System.Drawing.Size(524, 994);
this.richTextBox1.TabIndex = 4;
this.richTextBox1.Text = "";
this.richTextBox1.TextChanged += new System.EventHandler(this.richTextBox1_TextChanged);
//
// DisaplyWords
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.BackColor = System.Drawing.SystemColors.Highlight;
this.CancelButton = this.close;
this.ClientSize = new System.Drawing.Size(837, 1018);
this.Controls.Add(this.richTextBox1);
this.Controls.Add(this.close);
this.Controls.Add(this.repick_btn);
this.Controls.Add(this.answer_btn);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximumSize = new System.Drawing.Size(853, 1300);
this.MinimumSize = new System.Drawing.Size(853, 803);
this.Name = "DisaplyWords";
this.Text = "Random Pick";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button answer_btn;
private System.Windows.Forms.Button repick_btn;
private System.Windows.Forms.Button close;
private System.Windows.Forms.RichTextBox richTextBox1;
}
}