public void deleteMemory() { if (mmCard != null) { this.Controls.Remove(mmCard); mmCard = null; } }
public void addMemory() { if (mmCard == null) { mmCard = new Memory_cards_view(); mmCard.Location = new Point(5, 5); } this.Controls.Add(mmCard); }