_ Partial Class Frm_WwwrootExtract Inherits System.Windows.Forms.Form 'Form overrides dispose to clean up the component list. _ 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 'Required by the Windows Form Designer Private components As System.ComponentModel.IContainer 'NOTE: The following procedure is required by the Windows Form Designer 'It can be modified using the Windows Form Designer. 'Do not modify it using the code editor. _ Private Sub InitializeComponent() Me.lblStatus = New System.Windows.Forms.Label() Me.progressBar = New System.Windows.Forms.ProgressBar() Me.lblPercentage = New System.Windows.Forms.Label() Me.lblTitle = New System.Windows.Forms.Label() Me.SuspendLayout() ' 'lblStatus ' Me.lblStatus.AutoSize = True Me.lblStatus.Location = New System.Drawing.Point(34, 112) Me.lblStatus.Name = "lblStatus" Me.lblStatus.Size = New System.Drawing.Size(142, 15) Me.lblStatus.TabIndex = 0 Me.lblStatus.Text = "압축 해제 준비 중..." ' 'progressBar ' Me.progressBar.Location = New System.Drawing.Point(34, 138) Me.progressBar.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) Me.progressBar.Name = "progressBar" Me.progressBar.Size = New System.Drawing.Size(503, 38) Me.progressBar.TabIndex = 1 ' 'lblPercentage ' Me.lblPercentage.AutoSize = True Me.lblPercentage.Font = New System.Drawing.Font("굴림", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.lblPercentage.Location = New System.Drawing.Point(34, 188) Me.lblPercentage.Name = "lblPercentage" Me.lblPercentage.Size = New System.Drawing.Size(28, 15) Me.lblPercentage.TabIndex = 2 Me.lblPercentage.Text = "0%" ' 'lblTitle ' Me.lblTitle.AutoSize = True Me.lblTitle.Font = New System.Drawing.Font("굴림", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.lblTitle.Location = New System.Drawing.Point(34, 38) Me.lblTitle.Name = "lblTitle" Me.lblTitle.Size = New System.Drawing.Size(297, 19) Me.lblTitle.TabIndex = 3 Me.lblTitle.Text = "런타임 파일 압축 해제 중입니다" ' 'Frm_WwwrootExtract ' Me.AutoScaleDimensions = New System.Drawing.SizeF(8.0!, 15.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(571, 250) Me.Controls.Add(Me.lblTitle) Me.Controls.Add(Me.lblPercentage) Me.Controls.Add(Me.progressBar) Me.Controls.Add(Me.lblStatus) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "Frm_WwwrootExtract" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.Text = "압축 해제 중" Me.TopMost = True Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents lblStatus As Label Friend WithEvents progressBar As ProgressBar Friend WithEvents lblPercentage As Label Friend WithEvents lblTitle As Label End Class