Form1.Designer.vb 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  2. Partial Class Form1
  3. Inherits System.Windows.Forms.Form
  4. 'Form 重写 Dispose,以清理组件列表。
  5. <System.Diagnostics.DebuggerNonUserCode()> _
  6. Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  7. Try
  8. If disposing AndAlso components IsNot Nothing Then
  9. components.Dispose()
  10. End If
  11. Finally
  12. MyBase.Dispose(disposing)
  13. End Try
  14. End Sub
  15. 'Windows 窗体设计器所必需的
  16. Private components As System.ComponentModel.IContainer
  17. '注意: 以下过程是 Windows 窗体设计器所必需的
  18. '可以使用 Windows 窗体设计器修改它。
  19. '不要使用代码编辑器修改它。
  20. <System.Diagnostics.DebuggerStepThrough()> _
  21. Private Sub InitializeComponent()
  22. Me.ProgressBar1 = New System.Windows.Forms.ProgressBar()
  23. Me.TextBox2 = New System.Windows.Forms.TextBox()
  24. Me.SuspendLayout()
  25. '
  26. 'ProgressBar1
  27. '
  28. Me.ProgressBar1.Location = New System.Drawing.Point(28, 97)
  29. Me.ProgressBar1.Name = "ProgressBar1"
  30. Me.ProgressBar1.Size = New System.Drawing.Size(234, 23)
  31. Me.ProgressBar1.TabIndex = 1
  32. '
  33. 'TextBox2
  34. '
  35. Me.TextBox2.Location = New System.Drawing.Point(28, 135)
  36. Me.TextBox2.Name = "TextBox2"
  37. Me.TextBox2.Size = New System.Drawing.Size(234, 21)
  38. Me.TextBox2.TabIndex = 3
  39. '
  40. 'Form1
  41. '
  42. Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!)
  43. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  44. Me.ClientSize = New System.Drawing.Size(284, 262)
  45. Me.Controls.Add(Me.TextBox2)
  46. Me.Controls.Add(Me.ProgressBar1)
  47. Me.Name = "Form1"
  48. Me.Text = "Form1"
  49. Me.ResumeLayout(False)
  50. Me.PerformLayout()
  51. End Sub
  52. Friend WithEvents ProgressBar1 As System.Windows.Forms.ProgressBar
  53. Friend WithEvents TextBox2 As System.Windows.Forms.TextBox
  54. End Class