📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form aa
BackColor = &H00E0E0E0&
Caption = "蝴蝶飞"
ClientHeight = 1965
ClientLeft = 60
ClientTop = 345
ClientWidth = 4380
FillColor = &H00C0C0C0&
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Icon = "Form1.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
ScaleHeight = 1965
ScaleWidth = 4380
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command1
Caption = "退出"
Height = 375
Left = 2880
TabIndex = 0
Top = 1440
Width = 975
End
Begin VB.Timer Timer1
Interval = 100
Left = 120
Top = 1440
End
Begin VB.Image Image1
Height = 975
Left = 120
Picture = "Form1.frx":000C
Stretch = -1 'True
Top = 240
Width = 1095
End
Begin VB.Image Image3
Height = 975
Left = 2760
Picture = "Form1.frx":3B58
Stretch = -1 'True
Top = 240
Visible = 0 'False
Width = 1215
End
Begin VB.Image Image2
Height = 975
Left = 1440
Picture = "Form1.frx":6BD9
Stretch = -1 'True
Top = 240
Visible = 0 'False
Width = 1095
End
End
Attribute VB_Name = "aa"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'CODE Manger By BcodeXRose
'##################################################################
'## 过程名称:Command1_Click
'## 参数: 无
'##################################################################
Private Sub Command1_Click()
End
End Sub
'##################################################################
'## 过程名称:Timer1_Timer
'## 参数: 无
'##################################################################
Private Sub Timer1_Timer()
Static pickbmp As Integer
If pickbmp = 0 Then
Image1.Picture = Image2.Picture
pickbmp = 1
Else
Image1.Picture = Image3.Picture
pickbmp = 0
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -