_ Partial Class Form4 Inherits System.Windows.Forms.Form 'Form 覆寫 Dispose 以清除元件清單。 _ 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 Form 設計工具的必要項 Private components As System.ComponentModel.IContainer '注意: 以下為 Windows Form 設計工具所需的程序 '可以使用 Windows Form 設計工具進行修改。 '請不要使用程式碼編輯器進行修改。 _ Private Sub InitializeComponent() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Form4)) Me.ProgressBar1 = New System.Windows.Forms.ProgressBar Me.Label1 = New System.Windows.Forms.Label Me.SuspendLayout() ' 'ProgressBar1 ' Me.ProgressBar1.BackColor = System.Drawing.SystemColors.ButtonHighlight Me.ProgressBar1.ForeColor = System.Drawing.Color.LawnGreen Me.ProgressBar1.Location = New System.Drawing.Point(12, 114) Me.ProgressBar1.Name = "ProgressBar1" Me.ProgressBar1.RightToLeft = System.Windows.Forms.RightToLeft.No Me.ProgressBar1.Size = New System.Drawing.Size(306, 24) Me.ProgressBar1.Style = System.Windows.Forms.ProgressBarStyle.Continuous Me.ProgressBar1.TabIndex = 0 ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.BackColor = System.Drawing.Color.Transparent Me.Label1.Font = New System.Drawing.Font("新細明體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte)) Me.Label1.Location = New System.Drawing.Point(12, 18) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(120, 13) Me.Label1.TabIndex = 1 Me.Label1.Text = "Java 下載準備中…" ' 'Form4 ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.BackgroundImage = CType(resources.GetObject("$this.BackgroundImage"), System.Drawing.Image) Me.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch Me.ClientSize = New System.Drawing.Size(330, 150) Me.Controls.Add(Me.Label1) Me.Controls.Add(Me.ProgressBar1) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "Form4" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent Me.Text = "Java下載器" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents ProgressBar1 As System.Windows.Forms.ProgressBar Friend WithEvents Label1 As System.Windows.Forms.Label End Class