1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
- Partial Class Form1
- Inherits System.Windows.Forms.Form
- 'Form 重写 Dispose,以清理组件列表。
- <System.Diagnostics.DebuggerNonUserCode()> _
- Protected Overrides Sub Dispose(ByVal disposing As Boolean)
- Try
- If disposing AndAlso components IsNot Nothing Then
- components.Dispose()
- End If
- Finally
- MyBase.Dispose(disposing)
- End Try
- End Sub
- 'Windows 窗体设计器所必需的
- Private components As System.ComponentModel.IContainer
- '注意: 以下过程是 Windows 窗体设计器所必需的
- '可以使用 Windows 窗体设计器修改它。
- '不要使用代码编辑器修改它。
- <System.Diagnostics.DebuggerStepThrough()> _
- Private Sub InitializeComponent()
- Me.ProgressBar1 = New System.Windows.Forms.ProgressBar()
- Me.TextBox2 = New System.Windows.Forms.TextBox()
- Me.SuspendLayout()
- '
- 'ProgressBar1
- '
- Me.ProgressBar1.Location = New System.Drawing.Point(28, 97)
- Me.ProgressBar1.Name = "ProgressBar1"
- Me.ProgressBar1.Size = New System.Drawing.Size(234, 23)
- Me.ProgressBar1.TabIndex = 1
- '
- 'TextBox2
- '
- Me.TextBox2.Location = New System.Drawing.Point(28, 135)
- Me.TextBox2.Name = "TextBox2"
- Me.TextBox2.Size = New System.Drawing.Size(234, 21)
- Me.TextBox2.TabIndex = 3
- '
- 'Form1
- '
- Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!)
- Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(284, 262)
- Me.Controls.Add(Me.TextBox2)
- Me.Controls.Add(Me.ProgressBar1)
- Me.Name = "Form1"
- Me.Text = "Form1"
- Me.ResumeLayout(False)
- Me.PerformLayout()
- End Sub
- Friend WithEvents ProgressBar1 As System.Windows.Forms.ProgressBar
- Friend WithEvents TextBox2 As System.Windows.Forms.TextBox
- End Class
|