Files
Doku/Dokumentation/Login/Login.Designer.vb
2019-08-07 10:45:49 +02:00

128 lines
5.0 KiB
VB.net

<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
Partial Class Login
Inherits System.Windows.Forms.Form
'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen.
<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
'Wird vom Windows Form-Designer benötigt.
Private components As System.ComponentModel.IContainer
'Hinweis: Die folgende Prozedur ist für den Windows Form-Designer erforderlich.
'Das Bearbeiten ist mit dem Windows Form-Designer möglich.
'Das Bearbeiten mit dem Code-Editor ist nicht möglich.
<System.Diagnostics.DebuggerStepThrough()>
Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Login))
Me.Timer1 = New System.Windows.Forms.Timer(Me.components)
Me.LblTitel = New System.Windows.Forms.Label()
Me.PanHilfe = New System.Windows.Forms.Panel()
Me.btnLogin = New System.Windows.Forms.Button()
Me.txtUser = New System.Windows.Forms.TextBox()
Me.txtPassword = New System.Windows.Forms.TextBox()
Me.lblInfo = New System.Windows.Forms.Label()
Me.PanHilfe.SuspendLayout()
Me.SuspendLayout()
'
'Timer1
'
Me.Timer1.Enabled = True
Me.Timer1.Interval = 10
'
'LblTitel
'
Me.LblTitel.AutoSize = True
Me.LblTitel.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.LblTitel.Location = New System.Drawing.Point(59, 6)
Me.LblTitel.Name = "LblTitel"
Me.LblTitel.Size = New System.Drawing.Size(79, 15)
Me.LblTitel.TabIndex = 0
Me.LblTitel.Text = "Anmeldung"
'
'PanHilfe
'
Me.PanHilfe.Controls.Add(Me.lblInfo)
Me.PanHilfe.Controls.Add(Me.txtPassword)
Me.PanHilfe.Controls.Add(Me.txtUser)
Me.PanHilfe.Controls.Add(Me.btnLogin)
Me.PanHilfe.Controls.Add(Me.LblTitel)
Me.PanHilfe.Location = New System.Drawing.Point(12, 13)
Me.PanHilfe.Name = "PanHilfe"
Me.PanHilfe.Size = New System.Drawing.Size(196, 145)
Me.PanHilfe.TabIndex = 1
Me.PanHilfe.Visible = False
'
'btnLogin
'
Me.btnLogin.BackColor = System.Drawing.SystemColors.ControlLightLight
Me.btnLogin.FlatAppearance.BorderColor = System.Drawing.Color.DimGray
Me.btnLogin.FlatStyle = System.Windows.Forms.FlatStyle.Flat
Me.btnLogin.Location = New System.Drawing.Point(3, 86)
Me.btnLogin.Name = "btnLogin"
Me.btnLogin.Size = New System.Drawing.Size(186, 23)
Me.btnLogin.TabIndex = 9
Me.btnLogin.Text = "Login"
Me.btnLogin.UseVisualStyleBackColor = False
'
'txtUser
'
Me.txtUser.Location = New System.Drawing.Point(3, 34)
Me.txtUser.Name = "txtUser"
Me.txtUser.Size = New System.Drawing.Size(186, 20)
Me.txtUser.TabIndex = 10
Me.txtUser.Text = "Benutzername"
'
'txtPassword
'
Me.txtPassword.Location = New System.Drawing.Point(3, 60)
Me.txtPassword.Name = "txtPassword"
Me.txtPassword.Size = New System.Drawing.Size(186, 20)
Me.txtPassword.TabIndex = 11
Me.txtPassword.Text = "Passwort"
Me.txtPassword.UseSystemPasswordChar = True
'
'lblInfo
'
Me.lblInfo.AutoSize = True
Me.lblInfo.Location = New System.Drawing.Point(4, 116)
Me.lblInfo.Name = "lblInfo"
Me.lblInfo.Size = New System.Drawing.Size(35, 13)
Me.lblInfo.TabIndex = 13
Me.lblInfo.Text = "lblInfo"
'
'Login
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.BackColor = System.Drawing.SystemColors.GradientInactiveCaption
Me.ClientSize = New System.Drawing.Size(222, 171)
Me.Controls.Add(Me.PanHilfe)
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.Name = "Login"
Me.ShowInTaskbar = False
Me.Text = "Login"
Me.WindowState = System.Windows.Forms.FormWindowState.Minimized
Me.PanHilfe.ResumeLayout(False)
Me.PanHilfe.PerformLayout()
Me.ResumeLayout(False)
End Sub
Friend WithEvents Timer1 As Timer
Friend WithEvents LblTitel As Label
Friend WithEvents PanHilfe As Panel
Friend WithEvents btnLogin As Button
Friend WithEvents lblInfo As Label
Friend WithEvents txtPassword As TextBox
Friend WithEvents txtUser As TextBox
End Class