Exemple #1
0
        }                                  // My Label

        public void UpdateLabels()
        {
            // set my label to my bets description, and the label on my
            MyBet.Betton = this;
            MyLabel.Text = MyBet.GetDescription();
            // radio button to show my cash (" joe has 43 bucks")
            MyRadioButton.Text = Name + " has €" + Cash;
        }
Exemple #2
0
 public void UpDateLabels()
 {
     MyLabel.Text       = MyBet.GetDescription();
     MyRadioButton.Text = Name + "has" + Cash + "Bucks";
 }
Exemple #3
0
 public void UpdateLabels()
 {
     MyLabel.Text       = MyBet.GetDescription();
     MyRadioButton.Text = Name + " has $" + Cash;
 }