_ Partial Class Frm_Calc Inherits CForm '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.Button1 = New System.Windows.Forms.Button() Me.Button2 = New System.Windows.Forms.Button() Me.Button3 = New System.Windows.Forms.Button() Me.Panel1 = New System.Windows.Forms.Panel() Me.bt_설계개선안 = New System.Windows.Forms.Button() Me.bt_cancel = New System.Windows.Forms.Button() Me.Panel1.SuspendLayout() Me.SuspendLayout() ' 'Button1 ' Me.Button1.BackColor = System.Drawing.SystemColors.Control Me.Button1.Location = New System.Drawing.Point(11, 11) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(137, 31) Me.Button1.TabIndex = 3 Me.Button1.Text = "요구량" Me.Button1.UseVisualStyleBackColor = False ' 'Button2 ' Me.Button2.ForeColor = System.Drawing.Color.Silver Me.Button2.Location = New System.Drawing.Point(40, 174) Me.Button2.Name = "Button2" Me.Button2.Size = New System.Drawing.Size(137, 31) Me.Button2.TabIndex = 4 Me.Button2.Text = "소요량" Me.Button2.UseVisualStyleBackColor = True Me.Button2.Visible = False ' 'Button3 ' Me.Button3.BackColor = System.Drawing.SystemColors.Control Me.Button3.Location = New System.Drawing.Point(11, 48) Me.Button3.Name = "Button3" Me.Button3.Size = New System.Drawing.Size(137, 31) Me.Button3.TabIndex = 5 Me.Button3.Text = "요구량+소요량" Me.Button3.UseVisualStyleBackColor = False ' 'Panel1 ' Me.Panel1.BackColor = System.Drawing.Color.White Me.Panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle Me.Panel1.Controls.Add(Me.bt_cancel) Me.Panel1.Controls.Add(Me.bt_설계개선안) Me.Panel1.Controls.Add(Me.Button1) Me.Panel1.Controls.Add(Me.Button2) Me.Panel1.Controls.Add(Me.Button3) Me.Panel1.Dock = System.Windows.Forms.DockStyle.Fill Me.Panel1.Location = New System.Drawing.Point(0, 0) Me.Panel1.Name = "Panel1" Me.Panel1.Size = New System.Drawing.Size(160, 164) Me.Panel1.TabIndex = 7 ' 'bt_설계개선안 ' Me.bt_설계개선안.BackColor = System.Drawing.SystemColors.Control Me.bt_설계개선안.Location = New System.Drawing.Point(11, 85) Me.bt_설계개선안.Name = "bt_설계개선안" Me.bt_설계개선안.Size = New System.Drawing.Size(137, 31) Me.bt_설계개선안.TabIndex = 8 Me.bt_설계개선안.Text = "설계개선안" Me.bt_설계개선안.UseVisualStyleBackColor = False ' 'bt_cancel ' Me.bt_cancel.BackColor = System.Drawing.SystemColors.Control Me.bt_cancel.ForeColor = System.Drawing.Color.Red Me.bt_cancel.Location = New System.Drawing.Point(11, 122) Me.bt_cancel.Name = "bt_cancel" Me.bt_cancel.Size = New System.Drawing.Size(137, 31) Me.bt_cancel.TabIndex = 9 Me.bt_cancel.Text = "취 소" Me.bt_cancel.UseVisualStyleBackColor = False ' 'Frm_Calc ' Me.AutoScaleDimensions = New System.Drawing.SizeF(9.0!, 15.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.BackColor = System.Drawing.SystemColors.AppWorkspace Me.ClientSize = New System.Drawing.Size(160, 164) Me.Controls.Add(Me.Panel1) Me.Font = New System.Drawing.Font("돋움", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog Me.KeyPreview = True Me.Margin = New System.Windows.Forms.Padding(4) Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "Frm_Calc" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.Text = "계산" Me.TransparencyKey = System.Drawing.SystemColors.AppWorkspace Me.Panel1.ResumeLayout(False) Me.ResumeLayout(False) End Sub Friend WithEvents Button1 As System.Windows.Forms.Button Friend WithEvents Button2 As System.Windows.Forms.Button Friend WithEvents Button3 As System.Windows.Forms.Button Friend WithEvents Panel1 As System.Windows.Forms.Panel Friend WithEvents bt_설계개선안 As System.Windows.Forms.Button Friend WithEvents bt_cancel As System.Windows.Forms.Button End Class