TestGUI: Add Checksum form

This commit is contained in:
Jonathan Jenne
2021-05-06 10:33:21 +02:00
parent 8a1c4315c0
commit deec4e8bac
7 changed files with 250 additions and 1 deletions

View File

@@ -26,6 +26,7 @@ Partial Class frmStart
Me.Button2 = New System.Windows.Forms.Button()
Me.Button3 = New System.Windows.Forms.Button()
Me.Button4 = New System.Windows.Forms.Button()
Me.Button5 = New System.Windows.Forms.Button()
Me.SuspendLayout()
'
'Button1
@@ -64,11 +65,21 @@ Partial Class frmStart
Me.Button4.Text = "Skalierungsfaktor"
Me.Button4.UseVisualStyleBackColor = True
'
'Button5
'
Me.Button5.Location = New System.Drawing.Point(12, 260)
Me.Button5.Name = "Button5"
Me.Button5.Size = New System.Drawing.Size(236, 60)
Me.Button5.TabIndex = 2
Me.Button5.Text = "Button5"
Me.Button5.UseVisualStyleBackColor = True
'
'frmStart
'
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.Button5)
Me.Controls.Add(Me.Button4)
Me.Controls.Add(Me.Button3)
Me.Controls.Add(Me.Button2)
@@ -83,4 +94,5 @@ Partial Class frmStart
Friend WithEvents Button2 As Button
Friend WithEvents Button3 As Button
Friend WithEvents Button4 As Button
Friend WithEvents Button5 As Button
End Class