132 lines
5.4 KiB
VB.net
Raw Normal View History

2025-06-25 11:19:00 +09:00
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
<Global.System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1726")> _
Partial Class LoginForm
Inherits System.Windows.Forms.Form
'Form은 Dispose를 재정의하여 구성 요소 목록을 정리합니다.
<System.Diagnostics.DebuggerNonUserCode()> _
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 lbUserID As System.Windows.Forms.Label
Friend WithEvents lbUserPW As System.Windows.Forms.Label
Friend WithEvents txbUserID As System.Windows.Forms.TextBox
Friend WithEvents txbUserPW 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 디자이너를 사용하십시오.
'코드 편집기에서는 수정하지 마세요.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(LoginForm))
Me.lbUserID = New System.Windows.Forms.Label()
Me.lbUserPW = New System.Windows.Forms.Label()
Me.txbUserID = New System.Windows.Forms.TextBox()
Me.txbUserPW = New System.Windows.Forms.TextBox()
Me.OK = New System.Windows.Forms.Button()
Me.Cancel = New System.Windows.Forms.Button()
Me.LogoPictureBox = New System.Windows.Forms.PictureBox()
CType(Me.LogoPictureBox, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'lbUserID
'
Me.lbUserID.Location = New System.Drawing.Point(172, 24)
Me.lbUserID.Name = "lbUserID"
Me.lbUserID.Size = New System.Drawing.Size(220, 23)
Me.lbUserID.TabIndex = 0
Me.lbUserID.Text = "사용자 이름(&U)"
Me.lbUserID.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
'
'lbUserPW
'
Me.lbUserPW.Location = New System.Drawing.Point(172, 81)
Me.lbUserPW.Name = "lbUserPW"
Me.lbUserPW.Size = New System.Drawing.Size(220, 23)
Me.lbUserPW.TabIndex = 2
Me.lbUserPW.Text = "암호(&P)"
Me.lbUserPW.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
'
'txbUserID
'
Me.txbUserID.Location = New System.Drawing.Point(174, 44)
Me.txbUserID.Name = "txbUserID"
Me.txbUserID.Size = New System.Drawing.Size(220, 21)
Me.txbUserID.TabIndex = 1
'
'txbUserPW
'
Me.txbUserPW.Location = New System.Drawing.Point(174, 101)
Me.txbUserPW.Name = "txbUserPW"
Me.txbUserPW.PasswordChar = Global.Microsoft.VisualBasic.ChrW(42)
Me.txbUserPW.Size = New System.Drawing.Size(220, 21)
Me.txbUserPW.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)"
'
'LogoPictureBox
'
Me.LogoPictureBox.Image = CType(resources.GetObject("LogoPictureBox.Image"), System.Drawing.Image)
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
'
'LoginForm
'
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.txbUserPW)
Me.Controls.Add(Me.txbUserID)
Me.Controls.Add(Me.lbUserPW)
Me.Controls.Add(Me.lbUserID)
Me.Controls.Add(Me.LogoPictureBox)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "LoginForm"
Me.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent
Me.Text = "DUALSONIC INFO REG START LOGIN !"
CType(Me.LogoPictureBox, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
End Class