暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

進度條視窗.Designer.vb 2.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
  2. Partial Class 進度條視窗
  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 Form 設計工具的必要項
  16. Private components As System.ComponentModel.IContainer
  17. '注意: 以下為 Windows Form 設計工具所需的程序
  18. '可以使用 Windows Form 設計工具進行修改。
  19. '請勿使用程式碼編輯器進行修改。
  20. <System.Diagnostics.DebuggerStepThrough()>
  21. Private Sub InitializeComponent()
  22. Me.ProgressBar1 = New System.Windows.Forms.ProgressBar()
  23. Me.主題_lb = New System.Windows.Forms.Label()
  24. Me.SuspendLayout()
  25. '
  26. 'ProgressBar1
  27. '
  28. Me.ProgressBar1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  29. Or System.Windows.Forms.AnchorStyles.Left) _
  30. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  31. Me.ProgressBar1.Location = New System.Drawing.Point(2, 33)
  32. Me.ProgressBar1.Maximum = 10000
  33. Me.ProgressBar1.Name = "ProgressBar1"
  34. Me.ProgressBar1.Size = New System.Drawing.Size(566, 39)
  35. Me.ProgressBar1.Style = System.Windows.Forms.ProgressBarStyle.Continuous
  36. Me.ProgressBar1.TabIndex = 1
  37. '
  38. '主題_lb
  39. '
  40. Me.主題_lb.AutoSize = True
  41. Me.主題_lb.Location = New System.Drawing.Point(12, 9)
  42. Me.主題_lb.Name = "主題_lb"
  43. Me.主題_lb.Size = New System.Drawing.Size(126, 16)
  44. Me.主題_lb.TabIndex = 2
  45. Me.主題_lb.Text = "Progress Bar Window"
  46. '
  47. '進度條視窗
  48. '
  49. Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
  50. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  51. Me.ClientSize = New System.Drawing.Size(569, 74)
  52. Me.ControlBox = False
  53. Me.Controls.Add(Me.主題_lb)
  54. Me.Controls.Add(Me.ProgressBar1)
  55. Me.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  56. Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None
  57. Me.Margin = New System.Windows.Forms.Padding(4)
  58. Me.Name = "進度條視窗"
  59. Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
  60. Me.ResumeLayout(False)
  61. Me.PerformLayout()
  62. End Sub
  63. Friend WithEvents ProgressBar1 As ProgressBar
  64. Friend WithEvents 主題_lb As Label
  65. End Class