⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nullable.designer.vb

📁 wrox出版社的另一套经典的VB2005数据库编程学习书籍,收集了书中源码,郑重推荐,电子书,电子书下载
💻 VB
字号:
Partial Public Class Nullable
    Inherits System.Windows.Forms.Form

    <System.Diagnostics.DebuggerNonUserCode()> _
    Public Sub New()
        MyBase.New()

        'This call is required by the Windows Form Designer.
        InitializeComponent()

    End Sub

    'Form overrides dispose to clean up the component list.
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected Overloads 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.lblTitle = New System.Windows.Forms.Label
        Me.lblNulls = New System.Windows.Forms.Label
        Me.lblValues = New System.Windows.Forms.Label
        Me.btnPublic = New System.Windows.Forms.Button
        Me.btnPrivate = New System.Windows.Forms.Button
        Me.txtNulls = New System.Windows.Forms.TextBox
        Me.txtValues = New System.Windows.Forms.TextBox
        Me.btnNormal = New System.Windows.Forms.Button
        Me.SuspendLayout()
        '
        'lblTitle
        '
        Me.lblTitle.AutoSize = True
        Me.lblTitle.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.lblTitle.Location = New System.Drawing.Point(30, 27)
        Me.lblTitle.Name = "lblTitle"
        Me.lblTitle.Size = New System.Drawing.Size(231, 15)
        Me.lblTitle.TabIndex = 15
        Me.lblTitle.Text = "Counts of Orders Table Field Values"
        '
        'lblNulls
        '
        Me.lblNulls.AutoSize = True
        Me.lblNulls.Location = New System.Drawing.Point(155, 52)
        Me.lblNulls.Name = "lblNulls"
        Me.lblNulls.Size = New System.Drawing.Size(33, 14)
        Me.lblNulls.TabIndex = 14
        Me.lblNulls.Text = "Nulls:"
        '
        'lblValues
        '
        Me.lblValues.AutoSize = True
        Me.lblValues.Location = New System.Drawing.Point(46, 52)
        Me.lblValues.Margin = New System.Windows.Forms.Padding(3, 3, 0, 3)
        Me.lblValues.Name = "lblValues"
        Me.lblValues.Size = New System.Drawing.Size(42, 14)
        Me.lblValues.TabIndex = 13
        Me.lblValues.Text = "Values:"
        '
        'btnPublic
        '
        Me.btnPublic.Location = New System.Drawing.Point(68, 162)
        Me.btnPublic.Name = "btnPublic"
        Me.btnPublic.Size = New System.Drawing.Size(154, 21)
        Me.btnPublic.TabIndex = 12
        Me.btnPublic.Text = "Public Class Properties"
        '
        'btnPrivate
        '
        Me.btnPrivate.Location = New System.Drawing.Point(68, 126)
        Me.btnPrivate.Name = "btnPrivate"
        Me.btnPrivate.Size = New System.Drawing.Size(154, 21)
        Me.btnPrivate.TabIndex = 11
        Me.btnPrivate.Text = "Private Class Properties"
        '
        'txtNulls
        '
        Me.txtNulls.Location = New System.Drawing.Point(192, 49)
        Me.txtNulls.Name = "txtNulls"
        Me.txtNulls.Size = New System.Drawing.Size(51, 20)
        Me.txtNulls.TabIndex = 10
        '
        'txtValues
        '
        Me.txtValues.Location = New System.Drawing.Point(89, 49)
        Me.txtValues.Margin = New System.Windows.Forms.Padding(1, 3, 3, 3)
        Me.txtValues.Name = "txtValues"
        Me.txtValues.Size = New System.Drawing.Size(51, 20)
        Me.txtValues.TabIndex = 9
        '
        'btnNormal
        '
        Me.btnNormal.Location = New System.Drawing.Point(68, 91)
        Me.btnNormal.Name = "btnNormal"
        Me.btnNormal.Size = New System.Drawing.Size(154, 21)
        Me.btnNormal.TabIndex = 8
        Me.btnNormal.Text = "Normal Class Properties"
        '
        'Nullable
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.ClientSize = New System.Drawing.Size(302, 219)
        Me.Controls.Add(Me.lblTitle)
        Me.Controls.Add(Me.lblNulls)
        Me.Controls.Add(Me.lblValues)
        Me.Controls.Add(Me.btnPublic)
        Me.Controls.Add(Me.btnPrivate)
        Me.Controls.Add(Me.txtNulls)
        Me.Controls.Add(Me.txtValues)
        Me.Controls.Add(Me.btnNormal)
        Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
        Me.MaximizeBox = False
        Me.Name = "Nullable"
        Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
        Me.Text = "Nullable Generic Types"
        Me.ResumeLayout(False)
        Me.PerformLayout()

    End Sub
    Friend WithEvents lblTitle As System.Windows.Forms.Label
    Friend WithEvents lblNulls As System.Windows.Forms.Label
    Friend WithEvents lblValues As System.Windows.Forms.Label
    Friend WithEvents btnPublic As System.Windows.Forms.Button
    Friend WithEvents btnPrivate As System.Windows.Forms.Button
    Friend WithEvents txtNulls As System.Windows.Forms.TextBox
    Friend WithEvents txtValues As System.Windows.Forms.TextBox
    Friend WithEvents btnNormal As System.Windows.Forms.Button

End Class

⌨️ 快捷键说明

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