コード例 #1
0
 public UndoRedoHelper(IUndoRedoHost host)
 {
     _host = host;
     _states.AddFirst(_host.UndoRedoState);
     _currentNode = _states.First;
     WeakTimer.StartWeakTimer(this, new TimeSpan(0, 0, 1));
 }
コード例 #2
0
 public UndoRedoHelper(IUndoRedoHost host)
 {
     _host = host;
     WeakTimer.StartWeakTimer(this, TimeSpan.FromSeconds(1));
 }
コード例 #3
0
ファイル: UndoRedoHelper.cs プロジェクト: hacklex/Perspex
 public UndoRedoHelper(IUndoRedoHost host)
 {
     _host = host;
 }