示例#1
0
 public void Push(EditorState state)
 {
     _states.Add(state);
 }
示例#2
0
 public void Restore(EditorState state)
 {
     Content = state.Content;
 }
示例#3
0
 public void Restore(EditorState state)
 {
     content = state.GetContent();
 }
 public void Push(EditorState state)
 {
     states.Push(state);
 }
示例#5
0
 public void Restore(EditorState editorState)
 {
     this.Content = editorState.Content;
 }
示例#6
0
 public void push(EditorState state)
 {
     states.Add(state);
 }