Exemplo n.º 1
0
        public void ShowTable()
        {
            for (int i = 1; i <= tableCards[0]; i++)
            {
                if ((i % 11 == 1) && (i > 1))
                {
                    richTextBoxSuggestions.AppendText(Environment.NewLine);
                }

                richTextBoxSuggestions.SelectionFont = new Font(richTextBoxSuggestions.Font, FontStyle.Bold);
                richTextBoxSuggestions.AppendText(shoe.ConvertNrToSym(tableCards[i]) + " ");
                richTextBoxSuggestions.SelectionFont = new Font(richTextBoxSuggestions.Font, FontStyle.Regular);
            }
        }