📄 frmabout.frm
字号:
VERSION 5.00
Begin VB.Form frmAbout
Caption = "关于"
ClientHeight = 3060
ClientLeft = 345
ClientTop = 420
ClientWidth = 4560
LinkTopic = "Form1"
ScaleHeight = 3060
ScaleWidth = 4560
StartUpPosition = 2 '屏幕中心
Begin VB.Timer Timer1
Left = 1800
Top = 0
End
Begin VB.Frame Frame1
Caption = "毕业设计:"
Height = 2655
Left = 120
TabIndex = 0
Top = 240
Width = 4215
Begin VB.Frame Frame2
Caption = "作者:"
Height = 2055
Left = 1920
TabIndex = 1
Top = 360
Width = 2055
Begin VB.Label Label1
Caption = $"frmAbout.frx":0000
Height = 1095
Left = 240
TabIndex = 2
Top = 480
Width = 1575
End
End
Begin VB.Image Image1
Height = 1875
Left = 240
Picture = "frmAbout.frx":0095
Top = 480
Width = 1500
End
End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Timer1.Interval = 100
End Sub
Private Sub Timer1_Timer()
Static LR As Boolean, iColor As Integer
iColor = iColor + 1
Label1.ForeColor = GetIColor(iColor)
If iColor = MAXP Then iColor = 1
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -