📄 form3.frm
字号:
VERSION 5.00
Begin VB.Form Form3
Caption = "播放器"
ClientHeight = 3705
ClientLeft = 60
ClientTop = 345
ClientWidth = 5940
LinkTopic = "Form3"
ScaleHeight = 3705
ScaleWidth = 5940
StartUpPosition = 3 '窗口缺省
Begin VB.PictureBox Picture1
Height = 4455
Left = 0
Picture = "Form3.frx":0000
ScaleHeight = 4395
ScaleWidth = 5955
TabIndex = 0
Top = 0
Width = 6015
Begin VB.CommandButton Command4
Caption = "退 出"
DisabledPicture = "Form3.frx":4C74
DownPicture = "Form3.frx":53A0
BeginProperty Font
Name = "楷体_GB2312"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 540
Left = 4920
Picture = "Form3.frx":5ACC
Style = 1 'Graphical
TabIndex = 7
Top = 3120
Visible = 0 'False
Width = 975
End
Begin VB.CommandButton Command3
Caption = "帮助"
BeginProperty Font
Name = "楷体_GB2312"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 4920
Picture = "Form3.frx":61F8
Style = 1 'Graphical
TabIndex = 6
Top = 0
Visible = 0 'False
Width = 975
End
Begin VB.CommandButton Command2
Caption = "列表"
BeginProperty Font
Name = "楷体_GB2312"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 1080
Picture = "Form3.frx":6924
Style = 1 'Graphical
TabIndex = 5
Top = 2160
Visible = 0 'False
Width = 1455
End
Begin VB.CommandButton Command1
Caption = "播放"
BeginProperty Font
Name = "楷体_GB2312"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 3000
Picture = "Form3.frx":7050
Style = 1 'Graphical
TabIndex = 4
Top = 2160
Visible = 0 'False
Width = 1575
End
Begin VB.Timer Timer1
Left = 0
Top = 240
End
Begin VB.Label Label4
Height = 375
Left = 240
TabIndex = 8
Top = 3840
Width = 375
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
BeginProperty Font
Name = "楷体_GB2312"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 3480
TabIndex = 3
Top = 3360
Width = 735
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
BeginProperty Font
Name = "楷体_GB2312"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 1680
TabIndex = 2
Top = 3600
Width = 1575
End
Begin VB.Label Label1
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "播放器"
BeginProperty Font
Name = "楷体_GB2312"
Size = 36
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 780
Left = 1080
TabIndex = 1
Top = 360
Width = 3915
End
End
End
Attribute VB_Name = "Form3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Form1.Show
Form3.Visible = False
End Sub
Private Sub Command2_Click()
Form2.Show
Form3.Visible = False
End Sub
Private Sub Command3_Click()
Form4.Show
Form3.Visible = False
End Sub
Private Sub Command4_Click()
End
End Sub
Private Sub Form_Load()
Label4.Caption = 2
Timer1.Interval = 500
End Sub
Private Sub Timer1_Timer()
Dim b
Label4.Caption = Label4.Caption - 1
If Label4.Caption = 0 Then
Command1.Visible = True
Command2.Visible = True
Command3.Visible = True
Command4.Visible = True
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -