private void addActRedo(string str, Act.ActType type) { redoList.Push(new Act(type, str)); disRedo(); }
private void addActUndo(string str, Act.ActType type) { undoList.Push(new Act(type, str)); disUndo(); }