📄 fileopencommand.vb
字号:
Imports System
Imports System.ComponentModel
Imports System.Drawing
Imports System.Drawing.Color
Imports System.WinForms
Public class FileOpenCommand
Implements Command
'Command object to show file-open dialog
Public Sub New()
MyBase.New()
End Sub
'------
Public Sub Execute() Implements Command.Execute
Dim fd As OpenFileDialog
fd = New OpenFileDialog()
fd.ShowDialog()
End Sub
End Class
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -