private void UpdateCardListDisplay(Deck deckSrc) { List <String> deckStr = deckSrc.ToFullStringList(); mainDeckDisplay.DataSource = null; mainDeckDisplay.DataSource = deckStr; mainDeckDisplay.Update(); }