3DGDIRenderer/3DTest/MainForm.Designer.vb
Captain ALM b136cb3adf Init 2
2019-09-27 17:26:42 +01:00

70 lines
2.1 KiB
VB.net

'
' Created by SharpDevelop.
' User: 14manvilleA
' Date: 27/09/2019
' Time: 10:49
'
' To change this template use Tools | Options | Coding | Edit Standard Headers.
'
Partial Class MainForm
Inherits System.Windows.Forms.Form
''' <summary>
''' Designer variable used to keep track of non-visual components.
''' </summary>
Private components As System.ComponentModel.IContainer
''' <summary>
''' Disposes resources used by the form.
''' </summary>
''' <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If components IsNot Nothing Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub
''' <summary>
''' This method is required for Windows Forms designer support.
''' Do not change the method contents inside the source code editor. The Forms designer might
''' not be able to load this method if it was changed manually.
''' </summary>
Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Me.pbxv = New System.Windows.Forms.PictureBox()
Me.timerRender = New System.Windows.Forms.Timer(Me.components)
CType(Me.pbxv,System.ComponentModel.ISupportInitialize).BeginInit
Me.SuspendLayout
'
'pbxv
'
Me.pbxv.Dock = System.Windows.Forms.DockStyle.Fill
Me.pbxv.Location = New System.Drawing.Point(0, 0)
Me.pbxv.Name = "pbxv"
Me.pbxv.Size = New System.Drawing.Size(284, 261)
Me.pbxv.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Stretch
Me.pbxv.TabIndex = 0
Me.pbxv.TabStop = false
'
'timerRender
'
Me.timerRender.Interval = 125
'
'MainForm
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6!, 13!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(284, 261)
Me.Controls.Add(Me.pbxv)
Me.Name = "MainForm"
Me.Text = "3DTest"
CType(Me.pbxv,System.ComponentModel.ISupportInitialize).EndInit
Me.ResumeLayout(false)
End Sub
Private withevents timerRender As System.Windows.Forms.Timer
Private withevents pbxv As System.Windows.Forms.PictureBox
End Class