form1.designer.vb
来自「清华大学出版社出版的 移动应用开发宝典 张大威(2008)的附书源代码」· VB 代码 · 共 73 行
VB
73 行
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Public Class Form1
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
MyBase.Dispose(disposing)
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.ckCharging = New System.Windows.Forms.CheckBox
Me.pnlPower = New System.Windows.Forms.Panel
Me.pbBattery = New System.Windows.Forms.ProgressBar
Me.mainMenu1 = New System.Windows.Forms.MainMenu
Me.pnlPower.SuspendLayout()
Me.SuspendLayout()
'
'ckCharging
'
Me.ckCharging.Location = New System.Drawing.Point(3, 29)
Me.ckCharging.Name = "ckCharging"
Me.ckCharging.Size = New System.Drawing.Size(164, 20)
Me.ckCharging.TabIndex = 1
Me.ckCharging.TabStop = False
Me.ckCharging.Text = "Charging"
'
'pnlPower
'
Me.pnlPower.Controls.Add(Me.pbBattery)
Me.pnlPower.Controls.Add(Me.ckCharging)
Me.pnlPower.Location = New System.Drawing.Point(35, 108)
Me.pnlPower.Name = "pnlPower"
Me.pnlPower.Size = New System.Drawing.Size(170, 52)
'
'pbBattery
'
Me.pbBattery.Location = New System.Drawing.Point(3, 3)
Me.pbBattery.Name = "pbBattery"
Me.pbBattery.Size = New System.Drawing.Size(164, 20)
'
'Form1
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(96.0!, 96.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi
Me.AutoScroll = True
Me.ClientSize = New System.Drawing.Size(240, 268)
Me.Controls.Add(Me.pnlPower)
Me.Menu = Me.mainMenu1
Me.MinimizeBox = False
Me.Name = "Form1"
Me.Text = "Status"
Me.pnlPower.ResumeLayout(False)
Me.ResumeLayout(False)
End Sub
Private WithEvents ckCharging As System.Windows.Forms.CheckBox
Private WithEvents pnlPower As System.Windows.Forms.Panel
Private WithEvents pbBattery As System.Windows.Forms.ProgressBar
Private WithEvents mainMenu1 As System.Windows.Forms.MainMenu
End Class
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?