namespace ControlServer { partial class Popup { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// 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; } }