_ Partial Class 輸入密碼 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() Me.密碼_tb = New System.Windows.Forms.TextBox() Me.Label1 = New System.Windows.Forms.Label() Me.確認_bt = New System.Windows.Forms.Button() Me.取消_bt = New System.Windows.Forms.Button() Me.SuspendLayout() ' '密碼_tb ' Me.密碼_tb.Location = New System.Drawing.Point(4, 24) Me.密碼_tb.Name = "密碼_tb" Me.密碼_tb.PasswordChar = Global.Microsoft.VisualBasic.ChrW(42) Me.密碼_tb.Size = New System.Drawing.Size(134, 22) Me.密碼_tb.TabIndex = 0 ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte)) Me.Label1.Location = New System.Drawing.Point(2, 4) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(136, 16) Me.Label1.TabIndex = 1 Me.Label1.Text = "請輸入系統商管理密碼!!" ' '確認_bt ' Me.確認_bt.Location = New System.Drawing.Point(144, 4) Me.確認_bt.Name = "確認_bt" Me.確認_bt.Size = New System.Drawing.Size(75, 42) Me.確認_bt.TabIndex = 2 Me.確認_bt.Text = "確認" Me.確認_bt.UseVisualStyleBackColor = True ' '取消_bt ' Me.取消_bt.Location = New System.Drawing.Point(221, 4) Me.取消_bt.Name = "取消_bt" Me.取消_bt.Size = New System.Drawing.Size(75, 42) Me.取消_bt.TabIndex = 3 Me.取消_bt.Text = "取消" Me.取消_bt.UseVisualStyleBackColor = True ' '輸入密碼 ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(300, 53) Me.ControlBox = False Me.Controls.Add(Me.取消_bt) Me.Controls.Add(Me.確認_bt) Me.Controls.Add(Me.Label1) Me.Controls.Add(Me.密碼_tb) Me.Name = "輸入密碼" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.Text = "輸入密碼" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents 密碼_tb As TextBox Friend WithEvents Label1 As Label Friend WithEvents 確認_bt As Button Friend WithEvents 取消_bt As Button End Class