Exemplo n.º 1
0
 private void pasteButton2_Click(object sender, EventArgs e)
 {
     if (_buffer is null)
     {
         return;
     }
     _right.Paste(_buffer);
     RefreshBoxes(_right.Matrix, _rightBoxes);
 }
 /// <summary>
 /// Calls Paste method of MatrixFacade instance.
 /// </summary>
 /// <param name="matrix">Matrix to be pasted.</param>
 public virtual void Paste(IPrototype matrix)
 {
     _facade.Paste(matrix);
 }