📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form aa
BackColor = &H00E0E0E0&
Caption = "计算机"
ClientHeight = 2115
ClientLeft = 60
ClientTop = 345
ClientWidth = 4800
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 = 2115
ScaleWidth = 4800
StartUpPosition = 2 '屏幕中心
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
'##################################################################
'## 过程名称:Form_KeyDown
'## 参数:KeyCode 为Integer型
'## 参数:Shift 为Integer型
'##################################################################
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If (KeyCode = vbKeyF5) And (Shift And vbAltMask) Then
End
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -