82 lines
2.7 KiB
C#
82 lines
2.7 KiB
C#
namespace ControlServer
|
|
{
|
|
partial class Popup
|
|
{
|
|
/// <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()
|
|
{
|
|
lblText = new Label();
|
|
btnOk = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// lblText
|
|
//
|
|
lblText.Font = new Font("맑은 고딕", 12F, FontStyle.Regular, GraphicsUnit.Point, 129);
|
|
lblText.ForeColor = Color.Black;
|
|
lblText.Location = new Point(71, 50);
|
|
lblText.Name = "lblText";
|
|
lblText.Size = new Size(418, 139);
|
|
lblText.TabIndex = 0;
|
|
lblText.TextAlign = ContentAlignment.MiddleCenter;
|
|
//
|
|
// btnOk
|
|
//
|
|
btnOk.BackColor = SystemColors.Desktop;
|
|
btnOk.Font = new Font("맑은 고딕", 12F, FontStyle.Regular, GraphicsUnit.Point, 129);
|
|
btnOk.ForeColor = Color.White;
|
|
btnOk.Location = new Point(119, 235);
|
|
btnOk.Name = "btnOk";
|
|
btnOk.Size = new Size(328, 62);
|
|
btnOk.TabIndex = 1;
|
|
btnOk.Text = "확인";
|
|
btnOk.UseVisualStyleBackColor = false;
|
|
btnOk.MouseClick += btnOk_MouseClick;
|
|
//
|
|
// Popup
|
|
//
|
|
AutoScaleDimensions = new SizeF(9F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
BackColor = SystemColors.Window;
|
|
ClientSize = new Size(558, 332);
|
|
Controls.Add(btnOk);
|
|
Controls.Add(lblText);
|
|
ForeColor = Color.Transparent;
|
|
FormBorderStyle = FormBorderStyle.None;
|
|
MaximizeBox = false;
|
|
MinimizeBox = false;
|
|
Name = "Popup";
|
|
ShowInTaskbar = false;
|
|
StartPosition = FormStartPosition.CenterParent;
|
|
Text = "Popup";
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label lblText;
|
|
private Button btnOk;
|
|
}
|
|
} |