📄 dialog1.frm
字号:
VERSION 5.00
Begin VB.Form Dialog1
BorderStyle = 3 'Fixed Dialog
Caption = "您输了!"
ClientHeight = 1905
ClientLeft = 2760
ClientTop = 3750
ClientWidth = 6030
Icon = "Dialog1.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1905
ScaleWidth = 6030
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton CancelButton
Caption = "退出游戏(&X)"
Height = 495
Left = 3360
TabIndex = 1
Top = 1200
Width = 1935
End
Begin VB.CommandButton OKButton
Caption = "继续游戏(&C)"
Height = 495
Left = 720
TabIndex = 0
Top = 1200
Width = 1935
End
Begin VB.Image Image1
BorderStyle = 1 'Fixed Single
Height = 540
Left = 480
Picture = "Dialog1.frx":0442
Top = 240
Width = 540
End
Begin VB.Line Line2
BorderColor = &H00FFFFFF&
X1 = 120
X2 = 5880
Y1 = 960
Y2 = 960
End
Begin VB.Line Line1
BorderColor = &H00808080&
BorderWidth = 2
X1 = 120
X2 = 5880
Y1 = 960
Y2 = 960
End
Begin VB.Label Label1
Caption = "对不起,游戏结束了!"
BeginProperty Font
Name = "宋体"
Size = 21.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 1320
TabIndex = 2
Top = 240
Width = 4095
End
End
Attribute VB_Name = "Dialog1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub CancelButton_Click()
Unload Me
Unload Form1
End Sub
Private Sub OKButton_Click()
Unload Me
Form1.Text3.SetFocus
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -