📄 querydialog.designer.vb
字号:
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class QueryDialog
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.btnCancel = New System.Windows.Forms.Button
Me.btnExecute = New System.Windows.Forms.Button
Me.txtQuery = New System.Windows.Forms.TextBox
Me.SuspendLayout()
'
'btnCancel
'
Me.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.btnCancel.Location = New System.Drawing.Point(364, 34)
Me.btnCancel.Name = "btnCancel"
Me.btnCancel.Size = New System.Drawing.Size(75, 23)
Me.btnCancel.TabIndex = 5
Me.btnCancel.Text = "Cancel"
Me.btnCancel.UseVisualStyleBackColor = True
'
'btnExecute
'
Me.btnExecute.DialogResult = System.Windows.Forms.DialogResult.OK
Me.btnExecute.Location = New System.Drawing.Point(283, 34)
Me.btnExecute.Name = "btnExecute"
Me.btnExecute.Size = New System.Drawing.Size(75, 23)
Me.btnExecute.TabIndex = 4
Me.btnExecute.Text = "Execute"
Me.btnExecute.UseVisualStyleBackColor = True
'
'txtQuery
'
Me.txtQuery.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.txtQuery.Location = New System.Drawing.Point(9, 8)
Me.txtQuery.Name = "txtQuery"
Me.txtQuery.Size = New System.Drawing.Size(430, 20)
Me.txtQuery.TabIndex = 3
'
'QueryDialog
'
Me.AcceptButton = Me.btnExecute
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(448, 65)
Me.Controls.Add(Me.btnCancel)
Me.Controls.Add(Me.btnExecute)
Me.Controls.Add(Me.txtQuery)
Me.Name = "QueryDialog"
Me.Text = "Enter the query string:"
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Private WithEvents btnCancel As System.Windows.Forms.Button
Private WithEvents btnExecute As System.Windows.Forms.Button
Friend WithEvents txtQuery As System.Windows.Forms.TextBox
End Class
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -