This commit is contained in:
2024-12-12 10:44:14 +01:00
parent 43b091c40f
commit 9adffd7397
4 changed files with 102 additions and 47 deletions

View File

@@ -43,8 +43,8 @@ Partial Class frmEintragTvNew
Friend WithEvents lblZeile1 As Label
Friend WithEvents cmbTvTextBezeichnungAuswahl As ComboBox
Friend WithEvents lblBezeichnung As Label
Friend WithEvents lblPosition As Label
Friend WithEvents cmbPosition As ComboBox
Friend WithEvents nudPrioritaet As NumericUpDown
Friend WithEvents btnSpeichern As Button
Friend WithEvents btnLoeschen As Button
Friend WithEvents btnAbbrechen As Button
@@ -112,8 +112,7 @@ Partial Class frmEintragTvNew
Me.lblZeile1 = New System.Windows.Forms.Label()
Me.cmbTvTextBezeichnungAuswahl = New System.Windows.Forms.ComboBox()
Me.lblBezeichnung = New System.Windows.Forms.Label()
Me.lblPosition = New System.Windows.Forms.Label()
Me.cmbPosition = New System.Windows.Forms.ComboBox()
Me.nudPrioritaet = New System.Windows.Forms.NumericUpDown()
Me.btnBold = New System.Windows.Forms.Button()
Me.btnItalic = New System.Windows.Forms.Button()
Me.btnUnderline = New System.Windows.Forms.Button()
@@ -129,6 +128,7 @@ Partial Class frmEintragTvNew
Me.btnAbbrechen = New System.Windows.Forms.Button()
Me.chkShowInactive = New System.Windows.Forms.CheckBox()
Me.colorDialogText = New System.Windows.Forms.ColorDialog()
Me.Label1 = New System.Windows.Forms.Label()
CType(Me.dgvAVISOTV, System.ComponentModel.ISupportInitialize).BeginInit()
Me.grpEingabe.SuspendLayout()
Me.tabControlZeilen.SuspendLayout()
@@ -136,16 +136,17 @@ Partial Class frmEintragTvNew
Me.tabPageZeile2.SuspendLayout()
Me.tabPageZeile3.SuspendLayout()
Me.grpWochentage.SuspendLayout()
CType(Me.nudPrioritaet, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'btnOpenSettings
'
Me.btnOpenSettings.Location = New System.Drawing.Point(15, 1010)
Me.btnOpenSettings.Name = "btnOpenSettings"
Me.btnOpenSettings.Size = New System.Drawing.Size(150, 30)
Me.btnOpenSettings.TabIndex = 8
Me.btnOpenSettings.Text = "TV Einstellungen"
Me.btnOpenSettings.UseVisualStyleBackColor = True
'
'cbxStandort
'
@@ -180,6 +181,7 @@ Partial Class frmEintragTvNew
'
'grpEingabe
'
Me.grpEingabe.Controls.Add(Me.Label1)
Me.grpEingabe.Controls.Add(Me.tabControlZeilen)
Me.grpEingabe.Controls.Add(Me.lblNeueTvTextBezeichnung)
Me.grpEingabe.Controls.Add(Me.txtNeueTvTextBezeichnung)
@@ -197,8 +199,7 @@ Partial Class frmEintragTvNew
Me.grpEingabe.Controls.Add(Me.lblZeile1)
Me.grpEingabe.Controls.Add(Me.cmbTvTextBezeichnungAuswahl)
Me.grpEingabe.Controls.Add(Me.lblBezeichnung)
Me.grpEingabe.Controls.Add(Me.lblPosition)
Me.grpEingabe.Controls.Add(Me.cmbPosition)
Me.grpEingabe.Controls.Add(Me.nudPrioritaet)
Me.grpEingabe.Controls.Add(Me.btnBold)
Me.grpEingabe.Controls.Add(Me.btnItalic)
Me.grpEingabe.Controls.Add(Me.btnUnderline)
@@ -510,24 +511,12 @@ Partial Class frmEintragTvNew
Me.lblBezeichnung.TabIndex = 0
Me.lblBezeichnung.Text = "Bezeichnung:"
'
'lblPosition
'nudPrioritaet
'
Me.lblPosition.AutoSize = True
Me.lblPosition.Location = New System.Drawing.Point(62, 584)
Me.lblPosition.Name = "lblPosition"
Me.lblPosition.Size = New System.Drawing.Size(47, 13)
Me.lblPosition.TabIndex = 21
Me.lblPosition.Text = "Position:"
'
'cmbPosition
'
Me.cmbPosition.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
Me.cmbPosition.FormattingEnabled = True
Me.cmbPosition.Items.AddRange(New Object() {"Top", "Middle", "Bottom"})
Me.cmbPosition.Location = New System.Drawing.Point(125, 576)
Me.cmbPosition.Name = "cmbPosition"
Me.cmbPosition.Size = New System.Drawing.Size(177, 21)
Me.cmbPosition.TabIndex = 22
Me.nudPrioritaet.Location = New System.Drawing.Point(126, 582)
Me.nudPrioritaet.Name = "nudPrioritaet"
Me.nudPrioritaet.Size = New System.Drawing.Size(60, 20)
Me.nudPrioritaet.TabIndex = 36
'
'btnBold
'
@@ -656,6 +645,15 @@ Partial Class frmEintragTvNew
Me.chkShowInactive.Text = "Inaktive anzeigen"
Me.chkShowInactive.UseVisualStyleBackColor = True
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Location = New System.Drawing.Point(61, 589)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(45, 13)
Me.Label1.TabIndex = 37
Me.Label1.Text = "Priorität:"
'
'frmEintragTvNew
'
Me.ClientSize = New System.Drawing.Size(1342, 1052)
@@ -682,8 +680,11 @@ Partial Class frmEintragTvNew
Me.tabPageZeile3.ResumeLayout(False)
Me.grpWochentage.ResumeLayout(False)
Me.grpWochentage.PerformLayout()
CType(Me.nudPrioritaet, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents Label1 As Label
End Class