_ _ Partial Class frmMqtt 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 LogoPictureBox As System.Windows.Forms.PictureBox Friend WithEvents lbMqttAd As System.Windows.Forms.Label Friend WithEvents lbMqttTp As System.Windows.Forms.Label Friend WithEvents txbMqttAd As System.Windows.Forms.TextBox Friend WithEvents txbMqttTp As System.Windows.Forms.TextBox Friend WithEvents OK As System.Windows.Forms.Button Friend WithEvents Cancel As System.Windows.Forms.Button 'Windows Form 디자이너에 필요합니다. Private components As System.ComponentModel.IContainer '참고: 다음 프로시저는 Windows Form 디자이너에 필요합니다. '수정하려면 Windows Form 디자이너를 사용하십시오. '코드 편집기에서는 수정하지 마세요. _ Private Sub InitializeComponent() Me.LogoPictureBox = New System.Windows.Forms.PictureBox() Me.lbMqttAd = New System.Windows.Forms.Label() Me.lbMqttTp = New System.Windows.Forms.Label() Me.txbMqttAd = New System.Windows.Forms.TextBox() Me.txbMqttTp = New System.Windows.Forms.TextBox() Me.OK = New System.Windows.Forms.Button() Me.Cancel = New System.Windows.Forms.Button() CType(Me.LogoPictureBox, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'LogoPictureBox ' Me.LogoPictureBox.Image = Global.DUALSONIC_TD_Select_Tester.My.Resources.Resources.JOMT_아이콘_PNG Me.LogoPictureBox.Location = New System.Drawing.Point(0, 0) Me.LogoPictureBox.Name = "LogoPictureBox" Me.LogoPictureBox.Size = New System.Drawing.Size(165, 193) Me.LogoPictureBox.TabIndex = 0 Me.LogoPictureBox.TabStop = False ' 'lbMqttAd ' Me.lbMqttAd.Location = New System.Drawing.Point(172, 24) Me.lbMqttAd.Name = "lbMqttAd" Me.lbMqttAd.Size = New System.Drawing.Size(220, 23) Me.lbMqttAd.TabIndex = 0 Me.lbMqttAd.Text = "Broker Address(&A)" Me.lbMqttAd.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'lbMqttTp ' Me.lbMqttTp.Location = New System.Drawing.Point(172, 81) Me.lbMqttTp.Name = "lbMqttTp" Me.lbMqttTp.Size = New System.Drawing.Size(220, 23) Me.lbMqttTp.TabIndex = 2 Me.lbMqttTp.Text = "Topic(&T)" Me.lbMqttTp.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'txbMqttAd ' Me.txbMqttAd.Location = New System.Drawing.Point(174, 44) Me.txbMqttAd.Name = "txbMqttAd" Me.txbMqttAd.Size = New System.Drawing.Size(220, 21) Me.txbMqttAd.TabIndex = 1 ' 'txbMqttTp ' Me.txbMqttTp.Location = New System.Drawing.Point(174, 101) Me.txbMqttTp.Name = "txbMqttTp" Me.txbMqttTp.Size = New System.Drawing.Size(220, 21) Me.txbMqttTp.TabIndex = 3 ' 'OK ' Me.OK.Location = New System.Drawing.Point(197, 161) Me.OK.Name = "OK" Me.OK.Size = New System.Drawing.Size(94, 23) Me.OK.TabIndex = 4 Me.OK.Text = "확인(&O)" ' 'Cancel ' Me.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel Me.Cancel.Location = New System.Drawing.Point(300, 161) Me.Cancel.Name = "Cancel" Me.Cancel.Size = New System.Drawing.Size(94, 23) Me.Cancel.TabIndex = 5 Me.Cancel.Text = "취소(&C)" ' 'frmMqtt ' Me.AcceptButton = Me.OK Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.CancelButton = Me.Cancel Me.ClientSize = New System.Drawing.Size(401, 192) Me.Controls.Add(Me.Cancel) Me.Controls.Add(Me.OK) Me.Controls.Add(Me.txbMqttTp) Me.Controls.Add(Me.txbMqttAd) Me.Controls.Add(Me.lbMqttTp) Me.Controls.Add(Me.lbMqttAd) Me.Controls.Add(Me.LogoPictureBox) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "frmMqtt" Me.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent Me.Text = "frmMqtt" CType(Me.LogoPictureBox, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) Me.PerformLayout() End Sub End Class