コード例 #1
0
ファイル: DeckExplorer.cs プロジェクト: mattlennon3/Card-Deal
        private void UpdateCardListDisplay(Deck deckSrc)
        {
            List <String> deckStr = deckSrc.ToFullStringList();

            mainDeckDisplay.DataSource = null;
            mainDeckDisplay.DataSource = deckStr;
            mainDeckDisplay.Update();
        }