📄 processbar.vb
字号:
Public Class ProcessBar
Inherits System.Windows.Forms.Form
#Region " Windows 窗体设计器生成的代码 "
Public Sub New()
MyBase.New()
'该调用是 Windows 窗体设计器所必需的。
InitializeComponent()
'在 InitializeComponent() 调用之后添加任何初始化
End Sub
'窗体重写 dispose 以清理组件列表。
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub
'Windows 窗体设计器所必需的
Private components As System.ComponentModel.IContainer
'注意: 以下过程是 Windows 窗体设计器所必需的
'可以使用 Windows 窗体设计器修改此过程。
'不要使用代码编辑器修改它。
Friend WithEvents Timer1 As System.Windows.Forms.Timer
Friend WithEvents Label1 As System.Windows.Forms.Label
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container
Me.Timer1 = New System.Windows.Forms.Timer(Me.components)
Me.Label1 = New System.Windows.Forms.Label
Me.SuspendLayout()
'
'Timer1
'
'
'Label1
'
Me.Label1.ImageAlign = System.Drawing.ContentAlignment.TopLeft
Me.Label1.Location = New System.Drawing.Point(8, 8)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(232, 25)
Me.Label1.TabIndex = 0
Me.Label1.Text = "请稍等,程序正在加载中......"
Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
'
'ProcessBar
'
Me.AutoScale = False
Me.AutoScaleBaseSize = New System.Drawing.Size(6, 14)
Me.ClientSize = New System.Drawing.Size(250, 40)
Me.ControlBox = False
Me.Controls.Add(Me.Label1)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None
Me.MaximizeBox = False
Me.MaximumSize = New System.Drawing.Size(250, 40)
Me.MinimizeBox = False
Me.MinimumSize = New System.Drawing.Size(250, 40)
Me.Name = "ProcessBar"
Me.ShowInTaskbar = False
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "正在加载程序"
Me.ResumeLayout(False)
End Sub
#End Region
Dim sTime As String = 0 '初始设置为0
Private Sub ProcessBar_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.Timer1.Enabled = True
Me.Timer1.Interval = 1000 '设置间隔时间为1000毫秒=1秒
End Sub
'每隔1秒执行一次Timer1_Tick程序
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
sTime = sTime + 1
If sTime = 1 Then
Dim IndexForm As New IndexForm
IndexForm.Show()
Me.Hide()
End If
End Sub
End Class
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -