📄 async.designer.vb
字号:
Partial Public Class frmAsync
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.components = New System.ComponentModel.Container
Me.timWait = New System.Windows.Forms.Timer(Me.components)
Me.lblTitle = New System.Windows.Forms.Label
Me.chkMultiServer = New System.Windows.Forms.CheckBox
Me.chkSlowOrders = New System.Windows.Forms.CheckBox
Me.btnExecSync = New System.Windows.Forms.Button
Me.btnExecAsync = New System.Windows.Forms.Button
Me.lstOps = New System.Windows.Forms.ListBox
Me.SuspendLayout()
'
'timWait
'
Me.timWait.Interval = 2000
'
'lblTitle
'
Me.lblTitle.Font = New System.Drawing.Font("Verdana", 8.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.lblTitle.Location = New System.Drawing.Point(12, 12)
Me.lblTitle.Margin = New System.Windows.Forms.Padding(3, 3, 3, 0)
Me.lblTitle.Name = "lblTitle"
Me.lblTitle.Size = New System.Drawing.Size(254, 20)
Me.lblTitle.TabIndex = 12
Me.lblTitle.Text = "Asynchronous Command Operations"
'
'chkMultiServer
'
Me.chkMultiServer.Location = New System.Drawing.Point(49, 187)
Me.chkMultiServer.Name = "chkMultiServer"
Me.chkMultiServer.Size = New System.Drawing.Size(173, 24)
Me.chkMultiServer.TabIndex = 11
Me.chkMultiServer.Text = "Use Multiple Server Instances"
'
'chkSlowOrders
'
Me.chkSlowOrders.Location = New System.Drawing.Point(49, 163)
Me.chkSlowOrders.Name = "chkSlowOrders"
Me.chkSlowOrders.Size = New System.Drawing.Size(173, 24)
Me.chkSlowOrders.TabIndex = 10
Me.chkSlowOrders.Text = "Slow Processing Orders Reader"
'
'btnExecSync
'
Me.btnExecSync.Location = New System.Drawing.Point(161, 221)
Me.btnExecSync.Name = "btnExecSync"
Me.btnExecSync.Size = New System.Drawing.Size(105, 24)
Me.btnExecSync.TabIndex = 9
Me.btnExecSync.Text = "Execute &Sync"
'
'btnExecAsync
'
Me.btnExecAsync.Location = New System.Drawing.Point(13, 221)
Me.btnExecAsync.Name = "btnExecAsync"
Me.btnExecAsync.Size = New System.Drawing.Size(105, 24)
Me.btnExecAsync.TabIndex = 7
Me.btnExecAsync.Text = "Execute &Async"
'
'lstOps
'
Me.lstOps.FormattingEnabled = True
Me.lstOps.Location = New System.Drawing.Point(13, 33)
Me.lstOps.Margin = New System.Windows.Forms.Padding(3, 1, 3, 3)
Me.lstOps.Name = "lstOps"
Me.lstOps.Size = New System.Drawing.Size(253, 121)
Me.lstOps.Sorted = True
Me.lstOps.TabIndex = 8
'
'frmAsync
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(281, 259)
Me.Controls.Add(Me.chkMultiServer)
Me.Controls.Add(Me.chkSlowOrders)
Me.Controls.Add(Me.btnExecSync)
Me.Controls.Add(Me.btnExecAsync)
Me.Controls.Add(Me.lstOps)
Me.Controls.Add(Me.lblTitle)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "frmAsync"
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "Asynchronous Command Execution"
Me.ResumeLayout(False)
End Sub
Friend WithEvents timWait As System.Windows.Forms.Timer
Friend WithEvents lblTitle As System.Windows.Forms.Label
Friend WithEvents chkMultiServer As System.Windows.Forms.CheckBox
Friend WithEvents chkSlowOrders As System.Windows.Forms.CheckBox
Friend WithEvents btnExecSync As System.Windows.Forms.Button
Friend WithEvents btnExecAsync As System.Windows.Forms.Button
Friend WithEvents lstOps As System.Windows.Forms.ListBox
End Class
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -