- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomMessageBox.Designer.cs
More file actions
Latest commit
130 lines (124 loc) · 5.94 KB
/
Copy pathCustomMessageBox.Designer.cs
File metadata and controls
130 lines (124 loc) · 5.94 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
namespaceCustomMessageBox
{
partialclassCustomMessageBox
{
/// <summary>
/// Required designer variable.
/// </summary>
privateSystem.ComponentModel.IContainercomponents=null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protectedoverridevoidDispose(booldisposing)
{
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>
privatevoidInitializeComponent()
{
this.confirmButton=newSystem.Windows.Forms.Button();
this.cancelButton=newSystem.Windows.Forms.Button();
this.questionLabel=newSystem.Windows.Forms.Label();
this.panel1=newSystem.Windows.Forms.Panel();
this.noButton=newSystem.Windows.Forms.Button();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// confirmButton
//
this.confirmButton.Font=newSystem.Drawing.Font("굴림",18F,System.Drawing.FontStyle.Bold);
this.confirmButton.Location=newSystem.Drawing.Point(37,12);
this.confirmButton.Margin=newSystem.Windows.Forms.Padding(4,4,4,4);
this.confirmButton.Name="confirmButton";
this.confirmButton.Size=newSystem.Drawing.Size(239,103);
this.confirmButton.TabIndex=0;
this.confirmButton.Text="확인";
this.confirmButton.UseVisualStyleBackColor=true;
this.confirmButton.Click+=newSystem.EventHandler(this.confirmButton_Click);
//
// cancelButton
//
this.cancelButton.DialogResult=System.Windows.Forms.DialogResult.Cancel;
this.cancelButton.Font=newSystem.Drawing.Font("굴림",18F,System.Drawing.FontStyle.Bold);
this.cancelButton.Location=newSystem.Drawing.Point(531,12);
this.cancelButton.Margin=newSystem.Windows.Forms.Padding(4,4,4,4);
this.cancelButton.Name="cancelButton";
this.cancelButton.Size=newSystem.Drawing.Size(231,103);
this.cancelButton.TabIndex=1;
this.cancelButton.Text="취소";
this.cancelButton.UseVisualStyleBackColor=true;
this.cancelButton.Click+=newSystem.EventHandler(this.cancelButton_Click);
//
// questionLabel
//
this.questionLabel.AutoSize=true;
this.questionLabel.Font=newSystem.Drawing.Font("굴림",18F,System.Drawing.FontStyle.Bold,System.Drawing.GraphicsUnit.Point,((byte)(129)));
this.questionLabel.Location=newSystem.Drawing.Point(32,83);
this.questionLabel.Margin=newSystem.Windows.Forms.Padding(4,0,4,0);
this.questionLabel.Name="questionLabel";
this.questionLabel.Size=newSystem.Drawing.Size(0,24);
this.questionLabel.TabIndex=2;
//
// panel1
//
this.panel1.BackColor=System.Drawing.SystemColors.Control;
this.panel1.Controls.Add(this.noButton);
this.panel1.Controls.Add(this.cancelButton);
this.panel1.Controls.Add(this.confirmButton);
this.panel1.Dock=System.Windows.Forms.DockStyle.Bottom;
this.panel1.Location=newSystem.Drawing.Point(0,213);
this.panel1.Margin=newSystem.Windows.Forms.Padding(4,4,4,4);
this.panel1.Name="panel1";
this.panel1.Size=newSystem.Drawing.Size(791,124);
this.panel1.TabIndex=3;
//
// noButton
//
this.noButton.Font=newSystem.Drawing.Font("굴림",18F,System.Drawing.FontStyle.Bold);
this.noButton.Location=newSystem.Drawing.Point(284,12);
this.noButton.Margin=newSystem.Windows.Forms.Padding(4,4,4,4);
this.noButton.Name="noButton";
this.noButton.Size=newSystem.Drawing.Size(239,103);
this.noButton.TabIndex=2;
this.noButton.Text="아니요";
this.noButton.UseVisualStyleBackColor=true;
this.noButton.Click+=newSystem.EventHandler(this.NoButton_Click);
//
// CustomMessageBox
//
this.AutoScaleDimensions=newSystem.Drawing.SizeF(9F,16F);
this.AutoScaleMode=System.Windows.Forms.AutoScaleMode.Font;
this.BackColor=System.Drawing.SystemColors.ButtonHighlight;
this.CancelButton=this.cancelButton;
this.ClientSize=newSystem.Drawing.Size(791,337);
this.ControlBox=false;
this.Controls.Add(this.panel1);
this.Controls.Add(this.questionLabel);
this.Font=newSystem.Drawing.Font("굴림",12F);
this.Margin=newSystem.Windows.Forms.Padding(4,4,4,4);
this.Name="CustomMessageBox";
this.ShowIcon=false;
this.ShowInTaskbar=false;
this.StartPosition=System.Windows.Forms.FormStartPosition.CenterParent;
this.Text="Title";
this.panel1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
privateSystem.Windows.Forms.ButtonconfirmButton;
privateSystem.Windows.Forms.ButtoncancelButton;
privateSystem.Windows.Forms.LabelquestionLabel;
privateSystem.Windows.Forms.Panelpanel1;
privateSystem.Windows.Forms.ButtonnoButton;
}
}