Example #1
0
        void ShowLabels() // Shows a bunch of labels that were hidden
        {
            DealerLbl.Show();
            DealerScoreLbl.Show();
            DealerCardsLbl.Show();

            UserLbl.Show();
            UserScoreLbl.Show();
            UserCardsLbl.Show();
        }
Example #2
0
        void HideCards() // Hides the user and dealer cards.
        {
            UserCardsLbl.Hide();
            foreach (PictureBox card in uPic)
            {
                card.Hide();
            }

            foreach (PictureBox card in dPic)
            {
                card.Hide();
            }
            DealerCardsLbl.Hide();
        }