documentviewer test

This commit is contained in:
Jonathan Jenne
2020-01-08 13:57:05 +01:00
parent 310086820f
commit 2304214073
8 changed files with 247 additions and 4 deletions

View File

@@ -26,6 +26,7 @@ Partial Class Form1
Me.OpenFileDialog1 = New System.Windows.Forms.OpenFileDialog()
Me.Button1 = New System.Windows.Forms.Button()
Me.Button2 = New System.Windows.Forms.Button()
Me.Button3 = New System.Windows.Forms.Button()
Me.SuspendLayout()
'
'TextBox1
@@ -57,11 +58,21 @@ Partial Class Form1
Me.Button2.Text = "Load Path"
Me.Button2.UseVisualStyleBackColor = True
'
'Button3
'
Me.Button3.Location = New System.Drawing.Point(711, 38)
Me.Button3.Name = "Button3"
Me.Button3.Size = New System.Drawing.Size(77, 23)
Me.Button3.TabIndex = 2
Me.Button3.Text = "Load Path"
Me.Button3.UseVisualStyleBackColor = True
'
'Form1
'
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.Button3)
Me.Controls.Add(Me.Button2)
Me.Controls.Add(Me.Button1)
Me.Controls.Add(Me.TextBox1)
@@ -75,4 +86,5 @@ Partial Class Form1
Friend WithEvents OpenFileDialog1 As OpenFileDialog
Friend WithEvents Button1 As Button
Friend WithEvents Button2 As Button
Friend WithEvents Button3 As Button
End Class