form9.vb
来自「学籍管理系统 源代码 希望大家能用上 谢谢」· VB 代码 · 共 30 行
VB
30 行
Public Class Form9
Dim n As Integer
Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
Label1.ForeColor = Color.Yellow
If Label1.ForeColor = Color.Yellow Then
Timer1.Enabled = True
Timer2.Enabled = False
End If
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Label1.ForeColor = Color.Yellow
Timer1.Interval = 600
If Label1.ForeColor = Color.Yellow Then
Timer1.Enabled = False
Timer2.Enabled = True
Label1.ForeColor = Color.Red
n = n + 1
End If
If n = 4 Then
Me.Close()
Form1.Close()
End If
End Sub
Private Sub Form9_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Label1.ForeColor = Color.Red
End Sub
End Class
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?