📄 frmsplash.frm
字号:
VERSION 5.00
Begin VB.Form frmSplash
BorderStyle = 0 'None
ClientHeight = 4245
ClientLeft = 210
ClientTop = 1365
ClientWidth = 7380
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "frmSplash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
Picture = "frmSplash.frx":0442
ScaleHeight = 283
ScaleMode = 3 'Pixel
ScaleWidth = 492
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Timer Timer
Interval = 1000
Left = 3090
Top = 1875
End
Begin VB.Label lblCompanyProduct
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "STUDIO LOOKIES作品"
BeginProperty Font
Name = "宋体"
Size = 18
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00F8F3E4&
Height = 360
Left = 2400
TabIndex = 7
Top = 765
Width = 3480
End
Begin VB.Label lblLicenseTo
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "授权"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 165
TabIndex = 6
Top = 300
Width = 6855
End
Begin VB.Label lblProductName
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "产品"
BeginProperty Font
Name = "宋体"
Size = 32.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00F8F3E4&
Height = 765
Left = 2445
TabIndex = 5
Top = 1260
Width = 2430
End
Begin VB.Label lblPlatform
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Windows平台"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00F8F3E4&
Height = 240
Left = 5340
TabIndex = 4
Top = 2100
Width = 1455
End
Begin VB.Label lblVersion
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "版本"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00F8F3E4&
Height = 240
Left = 6285
TabIndex = 3
Top = 2460
Width = 510
End
Begin VB.Label lblWarning
BackStyle = 0 'Transparent
Caption = "警告"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 195
Left = 195
TabIndex = 2
Top = 3720
Width = 6765
End
Begin VB.Label lblCompany
BackStyle = 0 'Transparent
Caption = "Studio Lookies工作室"
ForeColor = &H00F8F3E4&
Height = 255
Left = 4485
TabIndex = 1
Top = 3300
Width = 2415
End
Begin VB.Label lblCopyright
BackStyle = 0 'Transparent
Caption = "版权所有"
ForeColor = &H00F8F3E4&
Height = 255
Left = 4485
TabIndex = 0
Top = 2940
Width = 2415
End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Click()
Unload Me
End Sub
Private Sub Form_KeyPress(KeyAscii As Integer)
Unload Me
End Sub
Private Sub Form_Load()
lblVersion.Caption = "版本 " & App.Major & "." & App.Minor & "." & App.Revision
lblProductName.Caption = App.Title
End Sub
Private Sub Form_Unload(Cancel As Integer)
frmMain.Show
End Sub
Private Sub Frame1_Click()
Unload Me
End Sub
Private Sub lblCompany_Click()
Unload Me
End Sub
Private Sub lblCompanyProduct_Click()
Unload Me
End Sub
Private Sub lblCopyright_Click()
Unload Me
End Sub
Private Sub lblLicenseTo_Click()
Unload Me
End Sub
Private Sub lblPlatform_Click()
Unload Me
End Sub
Private Sub lblProductName_Click()
Unload Me
End Sub
Private Sub lblVersion_Click()
Unload Me
End Sub
Private Sub lblWarning_Click()
Unload Me
End Sub
Private Sub Timer_Timer()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -