📄 frmflash.frm
字号:
VERSION 5.00
Begin VB.Form FrmFlash
BorderStyle = 1 'Fixed Single
Caption = "关于本系统..."
ClientHeight = 3360
ClientLeft = 45
ClientTop = 435
ClientWidth = 4965
Icon = "FrmFlash.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 224
ScaleMode = 3 'Pixel
ScaleWidth = 331
StartUpPosition = 2 'CenterScreen
Begin VB.Timer Timer1
Interval = 3000
Left = 1215
Top = 2520
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = $"FrmFlash.frx":08CA
BeginProperty Font
Name = "宋体"
Size = 11.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 1575
Index = 0
Left = 495
TabIndex = 0
Top = 765
Width = 4095
WordWrap = -1 'True
End
End
Attribute VB_Name = "FrmFlash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_KeyPress(KeyAscii As Integer)
If Flash = True Then
Unload Me
Else
Unload Me
FrmMain.Show
End If
End Sub
Private Sub Form_Load()
Me.KeyPreview = True
If Flash = True Then
Timer1.Enabled = False
End If
End Sub
Private Sub Form_MouseDown(Button As Integer, Shift As Integer, x As Single, y As Single)
If Flash = True Then
Unload Me
Else
Unload Me
FrmMain.Show
End If
End Sub
Private Sub Label1_Click(Index As Integer)
If Flash = True Then
Unload Me
Else
Unload Me
FrmMain.Show
End If
End Sub
Private Sub Timer1_Timer()
Unload Me
FrmMain.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -