Exemplo n.º 1
0
 private void RetrieveCardsButton_Click(object sender, EventArgs e)
 {
     OutputCardsTextBox.Clear();
     foreach (var entry in OutputCards)
     {
         OutputCardsTextBox.AppendText(entry + "\r\n");
     }
 }
Exemplo n.º 2
0
 private void ClearOutputCardsButton_Click(object sender, EventArgs e)
 {
     OutputCardsTextBox.Clear();
 }