This commit is contained in:
SchreiberM
2016-12-07 10:18:58 +01:00
parent 29abb10c1b
commit e809444d94
14 changed files with 418 additions and 87 deletions

View File

@@ -35,6 +35,7 @@ Partial Class frmSplash
Me.PictureBox1 = New System.Windows.Forms.PictureBox()
Me.PictureBox2 = New System.Windows.Forms.PictureBox()
Me.Label1 = New System.Windows.Forms.Label()
Me.lblpersonilization = New System.Windows.Forms.Label()
Me.TableLayoutPanel1.SuspendLayout()
CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).BeginInit()
@@ -95,11 +96,18 @@ Partial Class frmSplash
resources.ApplyResources(Me.Label1, "Label1")
Me.Label1.Name = "Label1"
'
'lblpersonilization
'
resources.ApplyResources(Me.lblpersonilization, "lblpersonilization")
Me.lblpersonilization.BackColor = System.Drawing.Color.Yellow
Me.lblpersonilization.Name = "lblpersonilization"
'
'frmSplash
'
resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ControlBox = False
Me.Controls.Add(Me.lblpersonilization)
Me.Controls.Add(Me.Label1)
Me.Controls.Add(Me.ApplicationTitle)
Me.Controls.Add(Me.PictureBox1)
@@ -128,5 +136,6 @@ Partial Class frmSplash
Friend WithEvents PictureBox1 As System.Windows.Forms.PictureBox
Friend WithEvents PictureBox2 As System.Windows.Forms.PictureBox
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents lblpersonilization As System.Windows.Forms.Label
End Class