Ejemplo n.º 1
0
 /// <summary>
 /// Removes a <see cref="KanbanBoardCell"/> from the swimlane
 /// </summary>
 public void RemoveCell(KanbanBoardCell cell)
 {
     if (cell.Swimlane == this)
     {
         cell.Swimlane      = null;
         cell.CardsChanged -= Cell_CardsChanged;
     }
     Cells.Remove(cell);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Adds a <see cref="KanbanBoardCell"/> to the swimlane
 /// </summary>
 public void AddCell(KanbanBoardCell cell)
 {
     cell.Swimlane      = this;
     cell.CardsChanged += Cell_CardsChanged;
     Cells.Add(cell);
 }