本文整理汇总了C#中IAction.Do方法的典型用法代码示例。如果您正苦于以下问题:C# IAction.Do方法的具体用法?C# IAction.Do怎么用?C# IAction.Do使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IAction
的用法示例。
在下文中一共展示了IAction.Do方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Do
/*
* isCanUndo attribute specifies whether the action can be undo.
* sometimes an action doesn't need undo even it's a IUndoable action.
* the action will not be pushed in undo stack after performed immediately.
*/
private void Do(IAction action, bool perform, bool isCanUndo)
{
Logger.Log(LOGKEY, string.Format("{0} action: {1}[{2}]", perform ? "do" : "add", action.GetType().Name, action.GetName()));
if (BeforePerformAction != null)
{
var arg = new ActionEventArgs(action, ActionBehavior.Do);
BeforePerformAction(this, arg);
if (arg.Cancel) return;
}
if (perform) action.Do();
if (action is IUndoableAction && isCanUndo)
{
redoStack.Clear();
undoStack.Add(action as IUndoableAction);
if(undoStack.Count() > capacity)
{
undoStack.RemoveRange(0, undoStack.Count() - capacity);
Logger.Log(LOGKEY, "action stack full. remove " + (capacity - undoStack.Count()) + " action(s).");
}
}
if (AfterPerformAction != null) AfterPerformAction(this, new ActionEventArgs(action, ActionBehavior.Do));
}
示例2: Do
public void Do(IAction action)
{
if (!action.Do())
return;
SetDirty(true);
LastAction = action;
UndoList.Push(action);
RedoList.Clear();
UpdateUndoRedoButtons();
if (UndoList.Count % 10 == 0)
AutoSave();
}