iundohandler.cs

来自「SharpDevelop2.0.0 c#开发免费工具」· CS 代码 · 共 16 行

CS
16
字号
// Copyright (c) 2005 Daniel Grunwald
// Licensed under the terms of the "BSD License", see doc/license.txt

using System;

namespace Base
{
	public interface IUndoHandler
	{
		bool CanUndo { get; }
		void Undo();
		bool CanRedo { get; }
		void Redo();
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?