connectionstringbuilderdialog.designer.vb
来自「讲解如何实现从数据库同步下载数据以及在窗口上显示数据」· VB 代码 · 共 88 行
VB
88 行
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class ConnectionStringBuilderDialog
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.btnTest = New System.Windows.Forms.Button
Me.btnCancel = New System.Windows.Forms.Button
Me.btnOK = New System.Windows.Forms.Button
Me.propGrid = New System.Windows.Forms.PropertyGrid
Me.SuspendLayout()
'
'btnTest
'
Me.btnTest.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
Me.btnTest.Location = New System.Drawing.Point(13, 380)
Me.btnTest.Name = "btnTest"
Me.btnTest.Size = New System.Drawing.Size(61, 30)
Me.btnTest.TabIndex = 7
Me.btnTest.Text = "Test"
'
'btnCancel
'
Me.btnCancel.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.btnCancel.Location = New System.Drawing.Point(425, 380)
Me.btnCancel.Name = "btnCancel"
Me.btnCancel.Size = New System.Drawing.Size(61, 30)
Me.btnCancel.TabIndex = 6
Me.btnCancel.Text = "Cancel"
'
'btnOK
'
Me.btnOK.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK
Me.btnOK.Location = New System.Drawing.Point(358, 380)
Me.btnOK.Name = "btnOK"
Me.btnOK.Size = New System.Drawing.Size(61, 30)
Me.btnOK.TabIndex = 5
Me.btnOK.Text = "OK"
'
'propGrid
'
Me.propGrid.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.propGrid.Location = New System.Drawing.Point(13, 12)
Me.propGrid.Name = "propGrid"
Me.propGrid.Size = New System.Drawing.Size(473, 362)
Me.propGrid.TabIndex = 4
'
'ConnectionStringBuilderDialog
'
Me.AcceptButton = Me.btnOK
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.CancelButton = Me.btnCancel
Me.ClientSize = New System.Drawing.Size(498, 423)
Me.Controls.Add(Me.btnTest)
Me.Controls.Add(Me.btnCancel)
Me.Controls.Add(Me.btnOK)
Me.Controls.Add(Me.propGrid)
Me.Name = "ConnectionStringBuilderDialog"
Me.Text = "Connection String Builder Dialog"
Me.ResumeLayout(False)
End Sub
Private WithEvents btnTest As System.Windows.Forms.Button
Private WithEvents btnCancel As System.Windows.Forms.Button
Private WithEvents btnOK As System.Windows.Forms.Button
Private WithEvents propGrid As System.Windows.Forms.PropertyGrid
End Class
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?