_ Partial Class SplashScreen Inherits System.Windows.Forms.Form 'Form은 Dispose를 재정의하여 구성 요소 목록을 정리합니다. _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) If disposing Then If Not (components Is Nothing) Then components.Dispose() End If End If MyBase.Dispose(disposing) End Sub Friend WithEvents MainLayoutPanel As System.Windows.Forms.TableLayoutPanel 'Windows Form 디자이너에 필요합니다. Private components As System.ComponentModel.IContainer '참고: 다음 프로시저는 Windows Form 디자이너에 필요합니다. '수정하려면 Windows Form 디자이너를 사용하십시오. '코드 편집기를 사용하여 수정하지 마십시오. _ Private Sub InitializeComponent() Me.MainLayoutPanel = New System.Windows.Forms.TableLayoutPanel() Me.lb_msg = New System.Windows.Forms.Label() Me.DetailsLayoutPanel = New System.Windows.Forms.TableLayoutPanel() Me.Copyright = New System.Windows.Forms.Label() Me.Version = New System.Windows.Forms.Label() Me.ApplicationTitle = New System.Windows.Forms.Label() Me.MainLayoutPanel.SuspendLayout() Me.DetailsLayoutPanel.SuspendLayout() Me.SuspendLayout() ' 'MainLayoutPanel ' Me.MainLayoutPanel.BackColor = System.Drawing.Color.MediumSeaGreen Me.MainLayoutPanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch Me.MainLayoutPanel.ColumnCount = 1 Me.MainLayoutPanel.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 286.0!)) Me.MainLayoutPanel.Controls.Add(Me.lb_msg, 0, 2) Me.MainLayoutPanel.Controls.Add(Me.DetailsLayoutPanel, 0, 1) Me.MainLayoutPanel.Controls.Add(Me.ApplicationTitle, 0, 0) Me.MainLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill Me.MainLayoutPanel.Location = New System.Drawing.Point(0, 0) Me.MainLayoutPanel.Name = "MainLayoutPanel" Me.MainLayoutPanel.RowCount = 3 Me.MainLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 70.0!)) Me.MainLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 18.0!)) Me.MainLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.0!)) Me.MainLayoutPanel.Size = New System.Drawing.Size(357, 205) Me.MainLayoutPanel.TabIndex = 0 ' 'lb_msg ' Me.lb_msg.BackColor = System.Drawing.Color.Transparent Me.lb_msg.Dock = System.Windows.Forms.DockStyle.Fill Me.lb_msg.Font = New System.Drawing.Font("굴림", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.lb_msg.ForeColor = System.Drawing.Color.White Me.lb_msg.Location = New System.Drawing.Point(3, 179) Me.lb_msg.Name = "lb_msg" Me.lb_msg.Size = New System.Drawing.Size(351, 26) Me.lb_msg.TabIndex = 2 Me.lb_msg.Text = "[]" Me.lb_msg.TextAlign = System.Drawing.ContentAlignment.MiddleCenter ' 'DetailsLayoutPanel ' Me.DetailsLayoutPanel.BackColor = System.Drawing.Color.Transparent Me.DetailsLayoutPanel.ColumnCount = 1 Me.DetailsLayoutPanel.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 490.0!)) Me.DetailsLayoutPanel.Controls.Add(Me.Copyright, 0, 1) Me.DetailsLayoutPanel.Controls.Add(Me.Version, 0, 0) Me.DetailsLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill Me.DetailsLayoutPanel.Location = New System.Drawing.Point(3, 146) Me.DetailsLayoutPanel.Name = "DetailsLayoutPanel" Me.DetailsLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 53.0303!)) Me.DetailsLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 46.9697!)) Me.DetailsLayoutPanel.Size = New System.Drawing.Size(351, 30) Me.DetailsLayoutPanel.TabIndex = 1 ' 'Copyright ' Me.Copyright.BackColor = System.Drawing.Color.Transparent Me.Copyright.Dock = System.Windows.Forms.DockStyle.Fill Me.Copyright.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Copyright.Location = New System.Drawing.Point(3, 15) Me.Copyright.Name = "Copyright" Me.Copyright.Size = New System.Drawing.Size(484, 15) Me.Copyright.TabIndex = 2 Me.Copyright.Text = "저작권" ' 'Version ' Me.Version.BackColor = System.Drawing.Color.Transparent Me.Version.Dock = System.Windows.Forms.DockStyle.Fill Me.Version.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Version.Location = New System.Drawing.Point(3, 0) Me.Version.Name = "Version" Me.Version.Size = New System.Drawing.Size(484, 15) Me.Version.TabIndex = 1 Me.Version.Text = "Version {0}.{1:00}.{2}.{3}" ' 'ApplicationTitle ' Me.ApplicationTitle.BackColor = System.Drawing.Color.MediumSeaGreen Me.ApplicationTitle.Dock = System.Windows.Forms.DockStyle.Fill Me.ApplicationTitle.Font = New System.Drawing.Font("맑은 고딕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.ApplicationTitle.Location = New System.Drawing.Point(3, 0) Me.ApplicationTitle.Name = "ApplicationTitle" Me.ApplicationTitle.Size = New System.Drawing.Size(351, 143) Me.ApplicationTitle.TabIndex = 0 Me.ApplicationTitle.Text = "응용 프로그램 제목" Me.ApplicationTitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter ' 'SplashScreen ' Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(357, 205) Me.ControlBox = False Me.Controls.Add(Me.MainLayoutPanel) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "SplashScreen" Me.ShowInTaskbar = False Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.MainLayoutPanel.ResumeLayout(False) Me.DetailsLayoutPanel.ResumeLayout(False) Me.ResumeLayout(False) End Sub Friend WithEvents ApplicationTitle As System.Windows.Forms.Label Friend WithEvents lb_msg As System.Windows.Forms.Label Friend WithEvents DetailsLayoutPanel As System.Windows.Forms.TableLayoutPanel Friend WithEvents Copyright As System.Windows.Forms.Label Friend WithEvents Version As System.Windows.Forms.Label End Class