_ Partial Class AboutBox1 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 TableLayoutPanel As System.Windows.Forms.TableLayoutPanel Friend WithEvents LogoPictureBox As System.Windows.Forms.PictureBox Friend WithEvents LabelProductName As System.Windows.Forms.Label Friend WithEvents LabelVersion As System.Windows.Forms.Label Friend WithEvents LabelCompanyName As System.Windows.Forms.Label Friend WithEvents TextBoxDescription As System.Windows.Forms.TextBox Friend WithEvents OKButton As System.Windows.Forms.Button Friend WithEvents LabelCopyright 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(AboutBox1)) Me.TableLayoutPanel = New System.Windows.Forms.TableLayoutPanel Me.LogoPictureBox = New System.Windows.Forms.PictureBox Me.LabelProductName = New System.Windows.Forms.Label Me.LabelVersion = New System.Windows.Forms.Label Me.LabelCopyright = New System.Windows.Forms.Label Me.LabelCompanyName = New System.Windows.Forms.Label Me.TextBoxDescription = New System.Windows.Forms.TextBox Me.OKButton = New System.Windows.Forms.Button Me.TableLayoutPanel.SuspendLayout() CType(Me.LogoPictureBox, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'TableLayoutPanel ' Me.TableLayoutPanel.ColumnCount = 2 Me.TableLayoutPanel.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.0!)) Me.TableLayoutPanel.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67.0!)) Me.TableLayoutPanel.Controls.Add(Me.LogoPictureBox, 0, 0) Me.TableLayoutPanel.Controls.Add(Me.LabelProductName, 1, 0) Me.TableLayoutPanel.Controls.Add(Me.LabelVersion, 1, 1) Me.TableLayoutPanel.Controls.Add(Me.LabelCopyright, 1, 2) Me.TableLayoutPanel.Controls.Add(Me.LabelCompanyName, 1, 3) Me.TableLayoutPanel.Controls.Add(Me.TextBoxDescription, 1, 4) Me.TableLayoutPanel.Controls.Add(Me.OKButton, 1, 5) Me.TableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill Me.TableLayoutPanel.Location = New System.Drawing.Point(10, 8) Me.TableLayoutPanel.Name = "TableLayoutPanel" Me.TableLayoutPanel.RowCount = 6 Me.TableLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10.0!)) Me.TableLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10.0!)) Me.TableLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10.0!)) Me.TableLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10.0!)) Me.TableLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50.0!)) Me.TableLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10.0!)) Me.TableLayoutPanel.Size = New System.Drawing.Size(463, 239) Me.TableLayoutPanel.TabIndex = 0 ' 'LogoPictureBox ' Me.LogoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill Me.LogoPictureBox.Image = CType(resources.GetObject("LogoPictureBox.Image"), System.Drawing.Image) Me.LogoPictureBox.Location = New System.Drawing.Point(3, 3) Me.LogoPictureBox.Name = "LogoPictureBox" Me.TableLayoutPanel.SetRowSpan(Me.LogoPictureBox, 6) Me.LogoPictureBox.Size = New System.Drawing.Size(146, 233) Me.LogoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage Me.LogoPictureBox.TabIndex = 0 Me.LogoPictureBox.TabStop = False ' 'LabelProductName ' Me.LabelProductName.Dock = System.Windows.Forms.DockStyle.Fill Me.LabelProductName.Location = New System.Drawing.Point(159, 0) Me.LabelProductName.Margin = New System.Windows.Forms.Padding(7, 0, 3, 0) Me.LabelProductName.MaximumSize = New System.Drawing.Size(0, 16) Me.LabelProductName.Name = "LabelProductName" Me.LabelProductName.Size = New System.Drawing.Size(301, 16) Me.LabelProductName.TabIndex = 0 Me.LabelProductName.Text = "제품 이름" Me.LabelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'LabelVersion ' Me.LabelVersion.Dock = System.Windows.Forms.DockStyle.Fill Me.LabelVersion.Location = New System.Drawing.Point(159, 23) Me.LabelVersion.Margin = New System.Windows.Forms.Padding(7, 0, 3, 0) Me.LabelVersion.MaximumSize = New System.Drawing.Size(0, 16) Me.LabelVersion.Name = "LabelVersion" Me.LabelVersion.Size = New System.Drawing.Size(301, 16) Me.LabelVersion.TabIndex = 0 Me.LabelVersion.Text = "버전" Me.LabelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'LabelCopyright ' Me.LabelCopyright.Dock = System.Windows.Forms.DockStyle.Fill Me.LabelCopyright.Location = New System.Drawing.Point(159, 46) Me.LabelCopyright.Margin = New System.Windows.Forms.Padding(7, 0, 3, 0) Me.LabelCopyright.MaximumSize = New System.Drawing.Size(0, 16) Me.LabelCopyright.Name = "LabelCopyright" Me.LabelCopyright.Size = New System.Drawing.Size(301, 16) Me.LabelCopyright.TabIndex = 0 Me.LabelCopyright.Text = "저작권" Me.LabelCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'LabelCompanyName ' Me.LabelCompanyName.Dock = System.Windows.Forms.DockStyle.Fill Me.LabelCompanyName.Location = New System.Drawing.Point(159, 69) Me.LabelCompanyName.Margin = New System.Windows.Forms.Padding(7, 0, 3, 0) Me.LabelCompanyName.MaximumSize = New System.Drawing.Size(0, 16) Me.LabelCompanyName.Name = "LabelCompanyName" Me.LabelCompanyName.Size = New System.Drawing.Size(301, 16) Me.LabelCompanyName.TabIndex = 0 Me.LabelCompanyName.Text = "회사 이름" Me.LabelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'TextBoxDescription ' Me.TextBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill Me.TextBoxDescription.Location = New System.Drawing.Point(159, 95) Me.TextBoxDescription.Margin = New System.Windows.Forms.Padding(7, 3, 3, 3) Me.TextBoxDescription.Multiline = True Me.TextBoxDescription.Name = "TextBoxDescription" Me.TextBoxDescription.ReadOnly = True Me.TextBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both Me.TextBoxDescription.Size = New System.Drawing.Size(301, 113) Me.TextBoxDescription.TabIndex = 0 Me.TextBoxDescription.TabStop = False Me.TextBoxDescription.Text = "설명:" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "(런타임에 레이블의 텍스트는 응용 프로그램의 어셈블리 정보로 바뀝니다." & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "응용 프로그램의 어셈블리 정보를 사용자 지정하려면 프로젝트 " & _ "디자이너의 [응용 프로그램] 창을 사용하십시오.)" ' 'OKButton ' Me.OKButton.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.OKButton.DialogResult = System.Windows.Forms.DialogResult.Cancel Me.OKButton.Location = New System.Drawing.Point(373, 215) Me.OKButton.Name = "OKButton" Me.OKButton.Size = New System.Drawing.Size(87, 21) Me.OKButton.TabIndex = 0 Me.OKButton.Text = "확인(&O)" ' 'AboutBox1 ' Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.CancelButton = Me.OKButton Me.ClientSize = New System.Drawing.Size(483, 255) Me.Controls.Add(Me.TableLayoutPanel) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "AboutBox1" Me.Padding = New System.Windows.Forms.Padding(10, 8, 10, 8) Me.ShowInTaskbar = False Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent Me.Text = "AboutBox1" Me.TableLayoutPanel.ResumeLayout(False) Me.TableLayoutPanel.PerformLayout() CType(Me.LogoPictureBox, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) End Sub End Class