_ Partial Class SplashScreen1 Inherits System.Windows.Forms.Form '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 Friend WithEvents ApplicationTitle As System.Windows.Forms.Label Friend WithEvents Version As System.Windows.Forms.Label Friend WithEvents Copyright As System.Windows.Forms.Label 'Windows Form 디자이너에 필요합니다. Private components As System.ComponentModel.IContainer '참고: 다음 프로시저는 Windows Form 디자이너에 필요합니다. '수정하려면 Windows Form 디자이너를 사용하십시오. '코드 편집기를 사용하여 수정하지 마십시오. _ Private Sub InitializeComponent() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(SplashScreen1)) Me.Version = New System.Windows.Forms.Label Me.Copyright = New System.Windows.Forms.Label Me.ApplicationTitle = New System.Windows.Forms.Label Me.Panel1 = New System.Windows.Forms.Panel Me.lb_msg = New System.Windows.Forms.Label Me.Panel1.SuspendLayout() Me.SuspendLayout() ' 'Version ' Me.Version.BackColor = System.Drawing.Color.Transparent Me.Version.Font = New System.Drawing.Font("맑은 고딕", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.Version.Location = New System.Drawing.Point(216, 63) Me.Version.Name = "Version" Me.Version.Size = New System.Drawing.Size(302, 31) Me.Version.TabIndex = 1 Me.Version.Text = "버전 {0}.{1:00}" Me.Version.TextAlign = System.Drawing.ContentAlignment.MiddleRight ' 'Copyright ' Me.Copyright.BackColor = System.Drawing.Color.Transparent Me.Copyright.Font = New System.Drawing.Font("맑은 고딕", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.Copyright.Location = New System.Drawing.Point(216, 94) Me.Copyright.Name = "Copyright" Me.Copyright.Size = New System.Drawing.Size(302, 36) Me.Copyright.TabIndex = 2 Me.Copyright.Text = "저작권" Me.Copyright.TextAlign = System.Drawing.ContentAlignment.MiddleRight ' 'ApplicationTitle ' Me.ApplicationTitle.BackColor = System.Drawing.Color.Transparent Me.ApplicationTitle.Font = New System.Drawing.Font("맑은 고딕", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.ApplicationTitle.Location = New System.Drawing.Point(1, 9) Me.ApplicationTitle.Name = "ApplicationTitle" Me.ApplicationTitle.Size = New System.Drawing.Size(529, 34) Me.ApplicationTitle.TabIndex = 0 Me.ApplicationTitle.Text = "응용 프로그램 제목" Me.ApplicationTitle.TextAlign = System.Drawing.ContentAlignment.BottomCenter ' 'Panel1 ' Me.Panel1.BackgroundImage = CType(resources.GetObject("Panel1.BackgroundImage"), System.Drawing.Image) Me.Panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center Me.Panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle Me.Panel1.Controls.Add(Me.Version) Me.Panel1.Controls.Add(Me.Copyright) Me.Panel1.Controls.Add(Me.ApplicationTitle) Me.Panel1.Controls.Add(Me.lb_msg) Me.Panel1.Location = New System.Drawing.Point(0, 0) Me.Panel1.Name = "Panel1" Me.Panel1.Size = New System.Drawing.Size(531, 174) Me.Panel1.TabIndex = 1 ' 'lb_msg ' Me.lb_msg.BackColor = System.Drawing.Color.Transparent Me.lb_msg.Font = New System.Drawing.Font("맑은 고딕", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.lb_msg.Location = New System.Drawing.Point(328, 130) Me.lb_msg.Name = "lb_msg" Me.lb_msg.Size = New System.Drawing.Size(190, 29) Me.lb_msg.TabIndex = 3 Me.lb_msg.Text = "환영합니다" Me.lb_msg.TextAlign = System.Drawing.ContentAlignment.MiddleRight ' 'SplashScreen1 ' Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(531, 174) Me.ControlBox = False Me.Controls.Add(Me.Panel1) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "SplashScreen1" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.TransparencyKey = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(216, Byte), Integer)) Me.Panel1.ResumeLayout(False) Me.ResumeLayout(False) End Sub Friend WithEvents Panel1 As System.Windows.Forms.Panel Friend WithEvents lb_msg As System.Windows.Forms.Label End Class