📄 6.1.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 3195
ClientLeft = 165
ClientTop = 735
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
Begin VB.Menu menufile
Caption = "文件(&F)"
Begin VB.Menu filenew
Caption = "新建(&N)"
Shortcut = ^N
End
Begin VB.Menu fileopen
Caption = "打开(&O)"
Shortcut = ^O
End
Begin VB.Menu fileline
Caption = "-"
End
Begin VB.Menu fileexit
Caption = "退出(&E)"
End
End
Begin VB.Menu draw
Caption = "绘图(&D)"
Begin VB.Menu tuoyuan
Caption = "椭圆(&O)"
End
Begin VB.Menu yuan
Caption = "圆(&C)"
Checked = -1 'True
End
Begin VB.Menu yuanhu
Caption = "圆弧(&A)"
End
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_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = 2 Then
Form1.PopupMenu menufile, 10, , , fileopen
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -