📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 1215
ClientLeft = 165
ClientTop = 735
ClientWidth = 2685
LinkTopic = "Form1"
ScaleHeight = 1215
ScaleWidth = 2685
StartUpPosition = 3 'Windows Default
Begin VB.Menu Filemenu
Caption = "文件(&F)"
Begin VB.Menu NewMenu
Caption = "新建(&N)"
Shortcut = ^N
End
Begin VB.Menu OpenMenu
Caption = "打开(&O)"
Shortcut = ^O
End
Begin VB.Menu SaveMenu
Caption = "保存(&S)"
Shortcut = ^S
End
Begin VB.Menu Menu1
Caption = "-"
End
Begin VB.Menu CloseMenu
Caption = "关闭"
Shortcut = ^X
End
End
Begin VB.Menu EditMenu
Caption = "编辑(&E)"
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = 2 Then
PopupMenu Filemenu
End If
End Sub
Private Sub Label1_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = 2 Then
PopupMenu Filemenu
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -