MS Bodytext, Bugfixing deleting

This commit is contained in:
Developer01
2025-04-10 17:46:33 +02:00
parent 7481691b4e
commit 8a9d5f92f3
19 changed files with 1028 additions and 63 deletions

View File

@@ -28,6 +28,7 @@ Partial Class frmSplashScreen
Me.lblVersion = New System.Windows.Forms.Label()
Me.pbStatus = New System.Windows.Forms.ProgressBar()
Me.lblStatus = New System.Windows.Forms.Label()
Me.lblGhostMode = New DevExpress.XtraEditors.LabelControl()
CType(Me.PictureEdit1.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
@@ -88,17 +89,30 @@ Partial Class frmSplashScreen
Me.lblStatus.Text = "{Status}"
Me.lblStatus.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
'
'lblGhostMode
'
Me.lblGhostMode.Appearance.BackColor = System.Drawing.Color.Yellow
Me.lblGhostMode.Appearance.Options.UseBackColor = True
Me.lblGhostMode.Location = New System.Drawing.Point(654, 243)
Me.lblGhostMode.Name = "lblGhostMode"
Me.lblGhostMode.Size = New System.Drawing.Size(92, 13)
Me.lblGhostMode.TabIndex = 10
Me.lblGhostMode.Text = "GhostModus active"
Me.lblGhostMode.Visible = False
'
'frmSplashScreen
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(800, 303)
Me.Controls.Add(Me.lblGhostMode)
Me.Controls.Add(Me.lblCopyright)
Me.Controls.Add(Me.lblVersion)
Me.Controls.Add(Me.lblStatus)
Me.Controls.Add(Me.pbStatus)
Me.Controls.Add(Me.PictureEdit1)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None
Me.KeyPreview = True
Me.Name = "frmSplashScreen"
Me.ShowIcon = False
Me.ShowInTaskbar = False
@@ -115,4 +129,5 @@ Partial Class frmSplashScreen
Friend WithEvents lblVersion As Label
Friend WithEvents pbStatus As ProgressBar
Friend WithEvents lblStatus As Label
Friend WithEvents lblGhostMode As DevExpress.XtraEditors.LabelControl
End Class