_ Partial Class DemoDlg 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 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(DemoDlg)) 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.Panel1 = New System.Windows.Forms.Panel() Me.Button2 = New System.Windows.Forms.Button() Me.Button1 = New System.Windows.Forms.Button() Me.TableLayoutPanel1 = New System.Windows.Forms.TableLayoutPanel() Me.lb_expiredate = New System.Windows.Forms.Label() Me.lb_msg = New System.Windows.Forms.Label() Me.TableLayoutPanel.SuspendLayout() CType(Me.LogoPictureBox, System.ComponentModel.ISupportInitialize).BeginInit() Me.Panel1.SuspendLayout() Me.TableLayoutPanel1.SuspendLayout() 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.Panel1, 1, 5) Me.TableLayoutPanel.Controls.Add(Me.TableLayoutPanel1, 1, 4) Me.TableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill Me.TableLayoutPanel.Location = New System.Drawing.Point(10, 8) Me.TableLayoutPanel.Name = "TableLayoutPanel" Me.TableLayoutPanel.RowCount = 7 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, 9.565217!)) Me.TableLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 46.95652!)) Me.TableLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 13.47826!)) Me.TableLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 8.0!)) Me.TableLayoutPanel.Size = New System.Drawing.Size(527, 235) 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, 7) Me.LogoPictureBox.Size = New System.Drawing.Size(167, 229) 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(180, 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(344, 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(180, 22) 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(344, 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(180, 44) 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(344, 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(180, 66) 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(344, 16) Me.LabelCompanyName.TabIndex = 0 Me.LabelCompanyName.Text = "회사 이름" Me.LabelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'Panel1 ' Me.Panel1.BackColor = System.Drawing.Color.Transparent Me.Panel1.Controls.Add(Me.Button2) Me.Panel1.Controls.Add(Me.Button1) Me.Panel1.Dock = System.Windows.Forms.DockStyle.Fill Me.Panel1.Location = New System.Drawing.Point(176, 196) Me.Panel1.Name = "Panel1" Me.Panel1.Size = New System.Drawing.Size(348, 24) Me.Panel1.TabIndex = 2 ' 'Button2 ' Me.Button2.BackColor = System.Drawing.Color.Transparent Me.Button2.DialogResult = System.Windows.Forms.DialogResult.Cancel Me.Button2.Dock = System.Windows.Forms.DockStyle.Left Me.Button2.Location = New System.Drawing.Point(0, 0) Me.Button2.Name = "Button2" Me.Button2.Size = New System.Drawing.Size(83, 24) Me.Button2.TabIndex = 2 Me.Button2.Text = "홈페이지(&H)" Me.Button2.UseVisualStyleBackColor = False ' 'Button1 ' Me.Button1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.Button1.BackColor = System.Drawing.Color.Transparent Me.Button1.DialogResult = System.Windows.Forms.DialogResult.Cancel Me.Button1.Font = New System.Drawing.Font("굴림", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.Button1.Location = New System.Drawing.Point(284, -1) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(64, 25) Me.Button1.TabIndex = 1 Me.Button1.Text = "확인(&O)" Me.Button1.UseVisualStyleBackColor = False ' 'TableLayoutPanel1 ' Me.TableLayoutPanel1.ColumnCount = 1 Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100.0!)) Me.TableLayoutPanel1.Controls.Add(Me.lb_expiredate, 0, 1) Me.TableLayoutPanel1.Controls.Add(Me.lb_msg, 0, 0) Me.TableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill Me.TableLayoutPanel1.Location = New System.Drawing.Point(173, 87) Me.TableLayoutPanel1.Margin = New System.Windows.Forms.Padding(0) Me.TableLayoutPanel1.Name = "TableLayoutPanel1" Me.TableLayoutPanel1.RowCount = 2 Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25.0!)) Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25.0!)) Me.TableLayoutPanel1.Size = New System.Drawing.Size(354, 106) Me.TableLayoutPanel1.TabIndex = 3 ' 'lb_expiredate ' Me.lb_expiredate.AutoSize = True Me.lb_expiredate.Location = New System.Drawing.Point(3, 53) Me.lb_expiredate.Name = "lb_expiredate" Me.lb_expiredate.Size = New System.Drawing.Size(77, 12) Me.lb_expiredate.TabIndex = 0 Me.lb_expiredate.Text = "인증만료일 : " ' 'lb_msg ' Me.lb_msg.AutoSize = True Me.lb_msg.Dock = System.Windows.Forms.DockStyle.Fill Me.lb_msg.Location = New System.Drawing.Point(3, 0) Me.lb_msg.Name = "lb_msg" Me.lb_msg.Size = New System.Drawing.Size(348, 53) Me.lb_msg.TabIndex = 0 Me.lb_msg.Text = "." Me.lb_msg.TextAlign = System.Drawing.ContentAlignment.MiddleCenter ' 'DemoDlg ' Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(547, 251) Me.Controls.Add(Me.TableLayoutPanel) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "DemoDlg" Me.Padding = New System.Windows.Forms.Padding(10, 8, 10, 8) Me.ShowInTaskbar = False Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.Text = "사용자확인" Me.TableLayoutPanel.ResumeLayout(False) CType(Me.LogoPictureBox, System.ComponentModel.ISupportInitialize).EndInit() Me.Panel1.ResumeLayout(False) Me.TableLayoutPanel1.ResumeLayout(False) Me.TableLayoutPanel1.PerformLayout() Me.ResumeLayout(False) End Sub Friend WithEvents Button1 As System.Windows.Forms.Button Friend WithEvents Panel1 As System.Windows.Forms.Panel Friend WithEvents TableLayoutPanel1 As System.Windows.Forms.TableLayoutPanel Friend WithEvents Button2 As System.Windows.Forms.Button Friend WithEvents lb_expiredate As System.Windows.Forms.Label Friend WithEvents lb_msg As System.Windows.Forms.Label End Class