accesstable.designer.vb

来自「SQL Server 业已成为最为流行的几大数据库之一」· VB 代码 · 共 98 行

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

    'Form 重写 Dispose,以清理组件列表。
    <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

    'Windows 窗体设计器所必需的
    Private components As System.ComponentModel.IContainer

    '注意: 以下过程是 Windows 窗体设计器所必需的
    '可以使用 Windows 窗体设计器修改它。
    '不要使用代码编辑器修改它。
    <System.Diagnostics.DebuggerStepThrough()> _
    Private Sub InitializeComponent()
        Me.GroupBox1 = New System.Windows.Forms.GroupBox
        Me.gdvTable = New System.Windows.Forms.DataGridView
        Me.btAdd = New System.Windows.Forms.Button
        Me.btDel = New System.Windows.Forms.Button
        Me.btEdit = New System.Windows.Forms.Button
        Me.GroupBox1.SuspendLayout()
        CType(Me.gdvTable, System.ComponentModel.ISupportInitialize).BeginInit()
        Me.SuspendLayout()
        '
        'GroupBox1
        '
        Me.GroupBox1.Controls.Add(Me.gdvTable)
        Me.GroupBox1.Location = New System.Drawing.Point(12, 13)
        Me.GroupBox1.Name = "GroupBox1"
        Me.GroupBox1.Size = New System.Drawing.Size(257, 179)
        Me.GroupBox1.TabIndex = 0
        Me.GroupBox1.TabStop = False
        '
        'gdvTable
        '
        Me.gdvTable.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
        Me.gdvTable.Location = New System.Drawing.Point(7, 10)
        Me.gdvTable.Name = "gdvTable"
        Me.gdvTable.RowTemplate.Height = 23
        Me.gdvTable.Size = New System.Drawing.Size(240, 154)
        Me.gdvTable.TabIndex = 0
        '
        'btAdd
        '
        Me.btAdd.Location = New System.Drawing.Point(29, 218)
        Me.btAdd.Name = "btAdd"
        Me.btAdd.Size = New System.Drawing.Size(53, 23)
        Me.btAdd.TabIndex = 1
        Me.btAdd.Text = "添加"
        Me.btAdd.UseVisualStyleBackColor = True
        '
        'btDel
        '
        Me.btDel.Location = New System.Drawing.Point(201, 217)
        Me.btDel.Name = "btDel"
        Me.btDel.Size = New System.Drawing.Size(51, 23)
        Me.btDel.TabIndex = 2
        Me.btDel.Text = "删除"
        Me.btDel.UseVisualStyleBackColor = True
        '
        'btEdit
        '
        Me.btEdit.Location = New System.Drawing.Point(116, 217)
        Me.btEdit.Name = "btEdit"
        Me.btEdit.Size = New System.Drawing.Size(51, 23)
        Me.btEdit.TabIndex = 3
        Me.btEdit.Text = "修改"
        Me.btEdit.UseVisualStyleBackColor = True
        '
        'AccessTable
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.ClientSize = New System.Drawing.Size(281, 265)
        Me.Controls.Add(Me.btEdit)
        Me.Controls.Add(Me.btDel)
        Me.Controls.Add(Me.btAdd)
        Me.Controls.Add(Me.GroupBox1)
        Me.Name = "AccessTable"
        Me.Text = "DMO示例--Table类"
        Me.GroupBox1.ResumeLayout(False)
        CType(Me.gdvTable, System.ComponentModel.ISupportInitialize).EndInit()
        Me.ResumeLayout(False)

    End Sub
    Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox
    Friend WithEvents gdvTable As System.Windows.Forms.DataGridView
    Friend WithEvents btAdd As System.Windows.Forms.Button
    Friend WithEvents btDel As System.Windows.Forms.Button
    Friend WithEvents btEdit As System.Windows.Forms.Button
End Class

⌨️ 快捷键说明

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