TestGUI: update

This commit is contained in:
Jonathan Jenne
2022-09-14 14:21:11 +02:00
parent e85110996a
commit c24202cdcf
2 changed files with 75 additions and 5 deletions

View File

@@ -25,6 +25,10 @@ Partial Class frmMsgBox
Me.SimpleButton1 = New DevExpress.XtraEditors.SimpleButton()
Me.SimpleButton2 = New DevExpress.XtraEditors.SimpleButton()
Me.SimpleButton3 = New DevExpress.XtraEditors.SimpleButton()
Me.SimpleButton4 = New DevExpress.XtraEditors.SimpleButton()
Me.SimpleButton5 = New DevExpress.XtraEditors.SimpleButton()
Me.SimpleButton6 = New DevExpress.XtraEditors.SimpleButton()
Me.SimpleButton7 = New DevExpress.XtraEditors.SimpleButton()
Me.SuspendLayout()
'
'SimpleButton1
@@ -33,7 +37,7 @@ Partial Class frmMsgBox
Me.SimpleButton1.Name = "SimpleButton1"
Me.SimpleButton1.Size = New System.Drawing.Size(163, 23)
Me.SimpleButton1.TabIndex = 0
Me.SimpleButton1.Text = "SimpleButton1"
Me.SimpleButton1.Text = "Error Message"
'
'SimpleButton2
'
@@ -41,7 +45,7 @@ Partial Class frmMsgBox
Me.SimpleButton2.Name = "SimpleButton2"
Me.SimpleButton2.Size = New System.Drawing.Size(163, 23)
Me.SimpleButton2.TabIndex = 0
Me.SimpleButton2.Text = "SimpleButton1"
Me.SimpleButton2.Text = "Warning Message"
'
'SimpleButton3
'
@@ -49,13 +53,49 @@ Partial Class frmMsgBox
Me.SimpleButton3.Name = "SimpleButton3"
Me.SimpleButton3.Size = New System.Drawing.Size(163, 23)
Me.SimpleButton3.TabIndex = 0
Me.SimpleButton3.Text = "SimpleButton1"
Me.SimpleButton3.Text = "Question Message"
'
'SimpleButton4
'
Me.SimpleButton4.Location = New System.Drawing.Point(12, 99)
Me.SimpleButton4.Name = "SimpleButton4"
Me.SimpleButton4.Size = New System.Drawing.Size(163, 23)
Me.SimpleButton4.TabIndex = 0
Me.SimpleButton4.Text = "Info Message"
'
'SimpleButton5
'
Me.SimpleButton5.Location = New System.Drawing.Point(12, 128)
Me.SimpleButton5.Name = "SimpleButton5"
Me.SimpleButton5.Size = New System.Drawing.Size(163, 23)
Me.SimpleButton5.TabIndex = 0
Me.SimpleButton5.Text = "Info Message (with cancel)"
'
'SimpleButton6
'
Me.SimpleButton6.Location = New System.Drawing.Point(12, 157)
Me.SimpleButton6.Name = "SimpleButton6"
Me.SimpleButton6.Size = New System.Drawing.Size(163, 23)
Me.SimpleButton6.TabIndex = 0
Me.SimpleButton6.Text = "Info Message (with long text 1)"
'
'SimpleButton7
'
Me.SimpleButton7.Location = New System.Drawing.Point(12, 186)
Me.SimpleButton7.Name = "SimpleButton7"
Me.SimpleButton7.Size = New System.Drawing.Size(163, 23)
Me.SimpleButton7.TabIndex = 0
Me.SimpleButton7.Text = "Info Message (with long text 1)"
'
'frmMsgBox
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(800, 450)
Me.Controls.Add(Me.SimpleButton7)
Me.Controls.Add(Me.SimpleButton6)
Me.Controls.Add(Me.SimpleButton5)
Me.Controls.Add(Me.SimpleButton4)
Me.Controls.Add(Me.SimpleButton3)
Me.Controls.Add(Me.SimpleButton2)
Me.Controls.Add(Me.SimpleButton1)
@@ -68,4 +108,8 @@ Partial Class frmMsgBox
Friend WithEvents SimpleButton1 As DevExpress.XtraEditors.SimpleButton
Friend WithEvents SimpleButton2 As DevExpress.XtraEditors.SimpleButton
Friend WithEvents SimpleButton3 As DevExpress.XtraEditors.SimpleButton
Friend WithEvents SimpleButton4 As DevExpress.XtraEditors.SimpleButton
Friend WithEvents SimpleButton5 As DevExpress.XtraEditors.SimpleButton
Friend WithEvents SimpleButton6 As DevExpress.XtraEditors.SimpleButton
Friend WithEvents SimpleButton7 As DevExpress.XtraEditors.SimpleButton
End Class