Skip to content
This repository was archived by the owner on Feb 19, 2023. It is now read-only.

Commit 2f6186b

Browse files
committed
feat: new ui
1 parent 2fa5d2c commit 2f6186b

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

frmMain.vb

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ Friend Class frmMain
8888
Friend WithEvents SysLabel As System.Windows.Forms.Label
8989
Friend WithEvents FixLabel As System.Windows.Forms.Label
9090
Friend WithEvents FixBox As System.Windows.Forms.PictureBox
91+
Friend WithEvents DebugCheckBox As System.Windows.Forms.CheckBox
92+
Friend WithEvents NumericUpDown1 As System.Windows.Forms.NumericUpDown
9193
Friend WithEvents sbpCurrentTestName As System.Windows.Forms.StatusBarPanel
9294
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
9395
Me.components = New System.ComponentModel.Container()
@@ -141,6 +143,8 @@ Friend Class frmMain
141143
Me.SysLabel = New System.Windows.Forms.Label()
142144
Me.FixLabel = New System.Windows.Forms.Label()
143145
Me.FixBox = New System.Windows.Forms.PictureBox()
146+
Me.DebugCheckBox = New System.Windows.Forms.CheckBox()
147+
Me.NumericUpDown1 = New System.Windows.Forms.NumericUpDown()
144148
CType(Me.imglogo, System.ComponentModel.ISupportInitialize).BeginInit()
145149
Me.fraTestplanConfiguration.SuspendLayout()
146150
Me.fraTxSLConfiguration.SuspendLayout()
@@ -162,6 +166,7 @@ Friend Class frmMain
162166
CType(Me.TestExecSL1, System.ComponentModel.ISupportInitialize).BeginInit()
163167
CType(Me.SysBox, System.ComponentModel.ISupportInitialize).BeginInit()
164168
CType(Me.FixBox, System.ComponentModel.ISupportInitialize).BeginInit()
169+
CType(Me.NumericUpDown1, System.ComponentModel.ISupportInitialize).BeginInit()
165170
Me.SuspendLayout()
166171
'
167172
'chkReportPassedTests
@@ -744,11 +749,31 @@ Friend Class frmMain
744749
Me.FixBox.TabIndex = 36
745750
Me.FixBox.TabStop = False
746751
'
752+
'DebugCheckBox
753+
'
754+
Me.DebugCheckBox.AutoSize = True
755+
Me.DebugCheckBox.Location = New System.Drawing.Point(611, 21)
756+
Me.DebugCheckBox.Name = "DebugCheckBox"
757+
Me.DebugCheckBox.Size = New System.Drawing.Size(56, 18)
758+
Me.DebugCheckBox.TabIndex = 38
759+
Me.DebugCheckBox.Text = "debug"
760+
Me.DebugCheckBox.UseVisualStyleBackColor = True
761+
'
762+
'NumericUpDown1
763+
'
764+
Me.NumericUpDown1.Enabled = False
765+
Me.NumericUpDown1.Location = New System.Drawing.Point(664, 19)
766+
Me.NumericUpDown1.Name = "NumericUpDown1"
767+
Me.NumericUpDown1.Size = New System.Drawing.Size(50, 20)
768+
Me.NumericUpDown1.TabIndex = 39
769+
'
747770
'frmMain
748771
'
749772
Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
750773
Me.BackColor = System.Drawing.SystemColors.Control
751774
Me.ClientSize = New System.Drawing.Size(758, 552)
775+
Me.Controls.Add(Me.NumericUpDown1)
776+
Me.Controls.Add(Me.DebugCheckBox)
752777
Me.Controls.Add(Me.FixLabel)
753778
Me.Controls.Add(Me.FixBox)
754779
Me.Controls.Add(Me.SysLabel)
@@ -796,6 +821,7 @@ Friend Class frmMain
796821
CType(Me.TestExecSL1, System.ComponentModel.ISupportInitialize).EndInit()
797822
CType(Me.SysBox, System.ComponentModel.ISupportInitialize).EndInit()
798823
CType(Me.FixBox, System.ComponentModel.ISupportInitialize).EndInit()
824+
CType(Me.NumericUpDown1, System.ComponentModel.ISupportInitialize).EndInit()
799825
Me.ResumeLayout(False)
800826
Me.PerformLayout()
801827

0 commit comments

Comments
 (0)