_ Partial Class Defalut_PrintForm 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 'Windows Form 디자이너에 필요합니다. Private components As System.ComponentModel.IContainer '참고: 다음 프로시저는 Windows Form 디자이너에 필요합니다. '수정하려면 Windows Form 디자이너를 사용하십시오. '코드 편집기를 사용하여 수정하지 마십시오. _ Private Sub InitializeComponent() Me.components = New System.ComponentModel.Container() Me.BS = New System.Windows.Forms.BindingSource(Me.components) Me.ToolTip1 = New System.Windows.Forms.ToolTip(Me.components) Me.cm = New System.Windows.Forms.ContextMenuStrip(Me.components) Me.cm_label = New System.Windows.Forms.ToolStripMenuItem() Me.ToolStripMenuItem1 = New System.Windows.Forms.ToolStripSeparator() Me.cm_visible = New System.Windows.Forms.ToolStripMenuItem() CType(Me.BS, System.ComponentModel.ISupportInitialize).BeginInit() Me.cm.SuspendLayout() Me.SuspendLayout() ' 'BS ' ' 'cm ' Me.cm.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.cm_label, Me.ToolStripMenuItem1, Me.cm_visible}) Me.cm.Name = "cm" Me.cm.Size = New System.Drawing.Size(99, 54) ' 'cm_label ' Me.cm_label.BackColor = System.Drawing.Color.LightSteelBlue Me.cm_label.Name = "cm_label" Me.cm_label.Size = New System.Drawing.Size(98, 22) Me.cm_label.Text = "이름" ' 'ToolStripMenuItem1 ' Me.ToolStripMenuItem1.Name = "ToolStripMenuItem1" Me.ToolStripMenuItem1.Size = New System.Drawing.Size(95, 6) ' 'cm_visible ' Me.cm_visible.Checked = True Me.cm_visible.CheckOnClick = True Me.cm_visible.CheckState = System.Windows.Forms.CheckState.Checked Me.cm_visible.Enabled = False Me.cm_visible.Name = "cm_visible" Me.cm_visible.Size = New System.Drawing.Size(98, 22) Me.cm_visible.Text = "표시" ' 'Defalut_PrintForm ' Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(374, 360) Me.DoubleBuffered = True Me.KeyPreview = True Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "Defalut_PrintForm" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.Text = "Default_PrintForm" CType(Me.BS, System.ComponentModel.ISupportInitialize).EndInit() Me.cm.ResumeLayout(False) Me.ResumeLayout(False) End Sub Public WithEvents BS As System.Windows.Forms.BindingSource Public WithEvents ToolTip1 As System.Windows.Forms.ToolTip Public Sub New() ' 이 호출은 Windows Form 디자이너에 필요합니다. InitializeComponent() ' InitializeComponent() 호출 뒤에 초기화 코드를 추가하십시오. End Sub Friend WithEvents cm As System.Windows.Forms.ContextMenuStrip Friend WithEvents cm_visible As System.Windows.Forms.ToolStripMenuItem Friend WithEvents cm_label As System.Windows.Forms.ToolStripMenuItem Friend WithEvents ToolStripMenuItem1 As System.Windows.Forms.ToolStripSeparator End Class