_ Partial Class Frm_Work Inherits CForm 'Form은 Dispose를 재정의하여 구성 요소 목록을 정리합니다. _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) Try If disposing AndAlso components IsNot Nothing Then components.Dispose() End If Finally MyBase.Dispose(disposing) End Try End Sub 'Windows Form 디자이너에 필요합니다. Private components As System.ComponentModel.IContainer '참고: 다음 프로시저는 Windows Form 디자이너에 필요합니다. '수정하려면 Windows Form 디자이너를 사용하십시오. '코드 편집기를 사용하여 수정하지 마십시오. _ Private Sub InitializeComponent() Me.components = New System.ComponentModel.Container() Me.Panel1 = New System.Windows.Forms.Panel() Me.Label1 = New System.Windows.Forms.Label() Me.ProgressBar1 = New System.Windows.Forms.ProgressBar() Me.Timer1 = New System.Windows.Forms.Timer(Me.components) Me.Panel1.SuspendLayout() Me.SuspendLayout() ' 'Panel1 ' Me.Panel1.BackColor = System.Drawing.Color.White Me.Panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center Me.Panel1.Controls.Add(Me.Label1) Me.Panel1.Controls.Add(Me.ProgressBar1) Me.Panel1.Dock = System.Windows.Forms.DockStyle.Fill Me.Panel1.Location = New System.Drawing.Point(0, 0) Me.Panel1.Margin = New System.Windows.Forms.Padding(4) Me.Panel1.Name = "Panel1" Me.Panel1.Size = New System.Drawing.Size(318, 96) Me.Panel1.TabIndex = 0 ' 'Label1 ' Me.Label1.BackColor = System.Drawing.Color.Transparent Me.Label1.Dock = System.Windows.Forms.DockStyle.Fill Me.Label1.Font = New System.Drawing.Font("돋움", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.Label1.Location = New System.Drawing.Point(0, 0) Me.Label1.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(318, 78) Me.Label1.TabIndex = 0 Me.Label1.Text = "잠시만 기다려주세요" Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter ' 'ProgressBar1 ' Me.ProgressBar1.Dock = System.Windows.Forms.DockStyle.Bottom Me.ProgressBar1.Location = New System.Drawing.Point(0, 78) Me.ProgressBar1.Name = "ProgressBar1" Me.ProgressBar1.Size = New System.Drawing.Size(318, 18) Me.ProgressBar1.TabIndex = 1 ' 'Timer1 ' Me.Timer1.Interval = 1000 ' 'Frm_Work ' Me.AutoScaleDimensions = New System.Drawing.SizeF(9.0!, 15.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.BackColor = System.Drawing.SystemColors.AppWorkspace Me.ClientSize = New System.Drawing.Size(318, 96) Me.ControlBox = False Me.Controls.Add(Me.Panel1) Me.Font = New System.Drawing.Font("돋움", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow Me.Margin = New System.Windows.Forms.Padding(4) Me.Name = "Frm_Work" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.Text = "알림메세지" Me.TransparencyKey = System.Drawing.SystemColors.AppWorkspace Me.Panel1.ResumeLayout(False) Me.ResumeLayout(False) End Sub Friend WithEvents Panel1 As System.Windows.Forms.Panel Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents ProgressBar1 As System.Windows.Forms.ProgressBar Friend WithEvents Timer1 As System.Windows.Forms.Timer End Class