⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 instructions.frm

📁 汉诺塔的程序源码和动画演示
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form4 
   BorderStyle     =   4  'Fixed ToolWindow
   Caption         =   "Instructions"
   ClientHeight    =   3510
   ClientLeft      =   45
   ClientTop       =   315
   ClientWidth     =   2730
   LinkTopic       =   "Form4"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   3510
   ScaleWidth      =   2730
   ShowInTaskbar   =   0   'False
   StartUpPosition =   1  'CenterOwner
   Begin VB.Frame Frame2 
      Caption         =   "Controls:"
      Height          =   825
      Left            =   30
      TabIndex        =   2
      Top             =   30
      Width           =   2685
      Begin VB.Label Label2 
         AutoSize        =   -1  'True
         Caption         =   "Left\Right Arrow"
         Height          =   195
         Index           =   3
         Left            =   1410
         TabIndex        =   6
         Top             =   540
         Width           =   1170
      End
      Begin VB.Label Label2 
         AutoSize        =   -1  'True
         Caption         =   "Space"
         Height          =   195
         Index           =   2
         Left            =   1410
         TabIndex        =   5
         Top             =   270
         Width           =   465
      End
      Begin VB.Label Label2 
         AutoSize        =   -1  'True
         Caption         =   "Move cursor:"
         Height          =   195
         Index           =   1
         Left            =   120
         TabIndex        =   4
         Top             =   540
         Width           =   930
      End
      Begin VB.Label Label2 
         AutoSize        =   -1  'True
         Caption         =   "Lift\Drop disk:"
         Height          =   195
         Index           =   0
         Left            =   120
         TabIndex        =   3
         Top             =   240
         Width           =   1005
      End
   End
   Begin VB.Frame Frame1 
      Caption         =   "Game Rules:"
      Height          =   2625
      Left            =   30
      TabIndex        =   0
      Top             =   870
      Width           =   2685
      Begin VB.Label Label1 
         Caption         =   $"Instructions.frx":0000
         Height          =   2355
         Left            =   90
         TabIndex        =   1
         Top             =   240
         Width           =   2505
      End
   End
End
Attribute VB_Name = "Form4"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)

'Escape
If KeyCode = 27 Then Unload Me

End Sub

Private Sub Form_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
Unload Me
End Sub

Private Sub Frame1_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
Unload Me
End Sub

Private Sub Frame2_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
Unload Me
End Sub

Private Sub Label1_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
Unload Me
End Sub

Private Sub Label2_MouseUp(Index As Integer, Button As Integer, Shift As Integer, X As Single, Y As Single)
Unload Me
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -