form1.designer.vb

来自「清华大学出版社出版的 移动应用开发宝典 张大威(2008)的附书源代码」· VB 代码 · 共 73 行

VB
73
字号
Namespace MobileDevelopersHandbook
    <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
    Partial Public Class Form1
        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

        '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.buttonGetData = New System.Windows.Forms.Button
            Me.labelStatus = New System.Windows.Forms.Label
            Me.mainMenu1 = New System.Windows.Forms.MainMenu
            Me.listBoxResults = New System.Windows.Forms.ListBox
            Me.SuspendLayout()
            '
            'buttonGetData
            '
            Me.buttonGetData.Location = New System.Drawing.Point(24, 166)
            Me.buttonGetData.Name = "buttonGetData"
            Me.buttonGetData.Size = New System.Drawing.Size(192, 24)
            Me.buttonGetData.TabIndex = 6
            Me.buttonGetData.Text = "Show Overtime Rates"
            '
            'labelStatus
            '
            Me.labelStatus.Location = New System.Drawing.Point(24, 198)
            Me.labelStatus.Name = "labelStatus"
            Me.labelStatus.Size = New System.Drawing.Size(192, 48)
            Me.labelStatus.Text = "Ready..."
            '
            'listBoxResults
            '
            Me.listBoxResults.DisplayMember = "OvertimeRateID"
            Me.listBoxResults.Location = New System.Drawing.Point(24, 22)
            Me.listBoxResults.Name = "listBoxResults"
            Me.listBoxResults.Size = New System.Drawing.Size(192, 128)
            Me.listBoxResults.TabIndex = 7
            Me.listBoxResults.ValueMember = "OvertimeRateID"
            '
            'Form1
            '
            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.Controls.Add(Me.buttonGetData)
            Me.Controls.Add(Me.labelStatus)
            Me.Controls.Add(Me.listBoxResults)
            Me.Menu = Me.mainMenu1
            Me.Name = "Form1"
            Me.Text = "Form1"
            Me.ResumeLayout(False)

        End Sub
        Private WithEvents buttonGetData As System.Windows.Forms.Button
        Private WithEvents labelStatus As System.Windows.Forms.Label
        Private WithEvents mainMenu1 As System.Windows.Forms.MainMenu
        Private WithEvents listBoxResults As System.Windows.Forms.ListBox
    End Class
End Namespace

⌨️ 快捷键说明

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