Ejemplo n.º 1
0
 public void Redo() => InkCellController?.FillCellAsync(CellId, NewColor).ContinueWithoutWaiting();
Ejemplo n.º 2
0
 public void Undo()
 {
     InkCellController?.EraseCellAsync(CellId).ContinueWithoutWaiting();
     InkCellController?.FillCellAsync(CellId, PrevColor).ContinueWithoutWaiting();
 }