📄 form3.frm
字号:
VERSION 5.00
Begin VB.Form Form3
BorderStyle = 4 'Fixed ToolWindow
Caption = "Are you sure?"
ClientHeight = 1275
ClientLeft = 45
ClientTop = 270
ClientWidth = 5070
LinkTopic = "Form3"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1275
ScaleWidth = 5070
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command2
Appearance = 0 'Flat
Caption = "否"
Height = 345
Left = 3975
TabIndex = 2
Top = 810
Width = 945
End
Begin VB.CommandButton Command1
Appearance = 0 'Flat
Caption = "是"
Height = 345
Left = 2835
TabIndex = 0
Top = 810
Width = 945
End
Begin VB.Image Image1
Height = 480
Left = 225
Picture = "Form3.frx":0000
Top = 225
Width = 480
End
Begin VB.Label Label1
Caption = "真的要退出游戏吗 ?"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 945
TabIndex = 1
Top = 225
Width = 2175
End
End
Attribute VB_Name = "Form3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Dim sa3 As Integer
Private Sub Command1_Click()
Unload Form1
End
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Form_Load()
sa3 = 0
If Form1.Timer1.Enabled = True Then
Form1.Timer1.Enabled = False
sa3 = 1
End If
End Sub
Private Sub Form_Unload(Cancel As Integer)
If sa3 = 1 Then
Form1.Timer1.Enabled = True
Form1.p = 1
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -