blockform.designer.vb

来自「Microsoft Mobile Development Handbook的代码」· VB 代码 · 共 57 行

VB
57
字号
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Public Class BlockForm
    Inherits System.Windows.Forms.Form

    'Form overrides dispose to clean up the component list.
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing AndAlso components IsNot Nothing Then
            components.Dispose()
        End If
        MyBase.Dispose(disposing)
    End Sub

    'Required by the Windows Form Designer
    Private components As System.ComponentModel.IContainer
    Private mainMenu1 As System.Windows.Forms.MainMenu

    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.  
    'Do not modify it using the code editor.
    <System.Diagnostics.DebuggerStepThrough()> _
    Private Sub InitializeComponent()
        Me.mainMenu1 = New System.Windows.Forms.MainMenu
        Me.exitMenuItem = New System.Windows.Forms.MenuItem
        Me.updateTimer = New System.Windows.Forms.Timer
        Me.SuspendLayout()
        '
        'mainMenu1
        '
        Me.mainMenu1.MenuItems.Add(Me.exitMenuItem)
        '
        'exitMenuItem
        '
        Me.exitMenuItem.Text = "Exit"
        '
        'updateTimer
        '
        Me.updateTimer.Enabled = True
        Me.updateTimer.Interval = 50
        '
        'BlockForm
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(96.0!, 96.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi
        Me.AutoScroll = True
        Me.ClientSize = New System.Drawing.Size(240, 268)
        Me.Menu = Me.mainMenu1
        Me.Name = "BlockForm"
        Me.Text = "Spinning Lit Meshes"
        Me.ResumeLayout(False)

    End Sub
    Friend WithEvents exitMenuItem As System.Windows.Forms.MenuItem
    Friend WithEvents updateTimer As System.Windows.Forms.Timer

End Class

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?