コード例 #1
0
ファイル: Paragraph.cs プロジェクト: akimovatatiana/OOD
 public void SetText(string text)
 {
     _history.AddAndExecuteCommand(new ReplaceTextCommand(_text, text));
 }
コード例 #2
0
ファイル: Document.cs プロジェクト: gajdukov-anton/OOD
 public void DeleteItem(int index)
 {
     _history.AddAndExecuteCommand(new DeleteItemCommand(_items, index));
 }