' ' 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 ''' ''' Designer variable used to keep track of non-visual components. ''' Private components As System.ComponentModel.IContainer ''' ''' Disposes resources used by the form. ''' ''' true if managed resources should be disposed; otherwise, false. 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 ''' ''' 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. ''' 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