This repository has been archived on 2025-11-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AUTS_OLD/UTS_Core/Undo/ICommand.vb

20 lines
386 B
VB.net
Raw Normal View History

2024-03-11 16:32:52 +08:00
Namespace Undo
Public Interface ICommand
''' <summary>
''' 运行一条需要记录在撤销栈的命令
''' </summary>
Sub Execute()
''' <summary>
''' 重做命令
''' </summary>
Sub Redo()
''' <summary>
''' 撤销命令
''' </summary>
Sub Undo()
End Interface
End NameSpace