69 lines
2.0 KiB
C#
69 lines
2.0 KiB
C#
using System.Collections.Generic;
|
|
using System;
|
|
using System.Drawing;
|
|
using System.Diagnostics;
|
|
using System.Data;
|
|
using System.Collections;
|
|
using System.Windows.Forms;
|
|
|
|
|
|
namespace vmsnet
|
|
{
|
|
partial class Frm_SMsg : System.Windows.Forms.Form
|
|
{
|
|
|
|
//Form은 Dispose를 재정의하여 구성 요소 목록을 정리합니다.
|
|
[System.Diagnostics.DebuggerNonUserCode()]protected override void Dispose(bool disposing)
|
|
{
|
|
try
|
|
{
|
|
if (disposing && components != null)
|
|
{
|
|
components.Dispose();
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
base.Dispose(disposing);
|
|
}
|
|
}
|
|
|
|
//Windows Form 디자이너에 필요합니다.
|
|
private System.ComponentModel.Container components = null;
|
|
|
|
//참고: 다음 프로시저는 Windows Form 디자이너에 필요합니다.
|
|
//수정하려면 Windows Form 디자이너를 사용하십시오.
|
|
//코드 편집기를 사용하여 수정하지 마십시오.
|
|
[System.Diagnostics.DebuggerStepThrough()]private void InitializeComponent()
|
|
{
|
|
this.Label1 = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
//Label1
|
|
//
|
|
this.Label1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.Label1.Location = new System.Drawing.Point(0, 0);
|
|
this.Label1.Name = "Label1";
|
|
this.Label1.Size = new System.Drawing.Size(516, 56);
|
|
this.Label1.TabIndex = 0;
|
|
this.Label1.Text = "...";
|
|
this.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|
//
|
|
//Frm_SMsg
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF((float) (7.0F), (float) (12.0F));
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(516, 56);
|
|
this.Controls.Add(this.Label1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|
this.Name = "Frm_SMsg";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "잠시만 기다려주세요";
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
internal System.Windows.Forms.Label Label1;
|
|
}
|
|
|
|
}
|