示例#1
0
 public void Push(EditorState state)
 {
     states.Add(state);
 }
示例#2
0
 public void RestoreState(EditorState state)
 {
     _content = state.Content;
 }
示例#3
0
 public void Restore(EditorState state)
 {
     content = state.GetContent();
 }
示例#4
0
 public void Restore(EditorState editorState)
 {
     Contet   = editorState.Contet;
     FontName = editorState.FontName;
     FontSize = editorState.FontSize;
 }
示例#5
0
 public void Push(EditorState state)
 {
     _states.Push(state);
 }