?? helpwindow.frm
字號:
VERSION 5.00
Begin VB.Form HelpWindow
BorderStyle = 3 'Fixed Dialog
Caption = "使用幫助"
ClientHeight = 9570
ClientLeft = 3330
ClientTop = 1800
ClientWidth = 8430
Icon = "HelpWindow.frx":0000
LinkTopic = "Form4"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 9570
ScaleWidth = 8430
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.PictureBox Picture1
Height = 8775
Left = 0
Picture = "HelpWindow.frx":030A
ScaleHeight = 8715
ScaleWidth = 8355
TabIndex = 0
Top = 0
Width = 8415
End
Begin VB.Label Label1
Caption = $"HelpWindow.frx":BE6C
Height = 735
Left = 120
TabIndex = 1
Top = 8880
Width = 8055
End
End
Attribute VB_Name = "HelpWindow"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Declare Function SetWindowPos Lib "user32" (ByVal hwnd As Long, ByVal hWndInsertAfter As Long, ByVal X As Long, ByVal Y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long
Private Sub Form_Load()
SetWindowPos Me.hwnd, -1, 0, 0, 0, 0, &H1 Or &H2
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -