Esempio n. 1
0
 public Form1()
 {
     InitializeComponent();
     dinnerParty = new DinnerParty((int)numericUpDown1.Value,
                                     healthyBox.Checked, fancyBox.Checked );
     DisplayDinnerPartyCost();
 }
Esempio n. 2
0
        public Form1()
        {
            InitializeComponent();

            party = new DinnerParty((int)NumberPeopleNumericUpDown.Value, FantazyDecorationCheckBox.Checked, HealthyOptionCheckBox.Checked);

            DisplayChanged();
        }
Esempio n. 3
0
        public Form1()
        {
            InitializeComponent();
            dinnerParty = new DinnerParty((int)numericUpDown1.Value,
                                          healthyBox.Checked, fancyBox.Checked);
            DisplayDinnerPartyCost();

            birthdayParty = new BirthdayParty((int)numberBirthday.Value,
                                              fancyBirthday.Checked, cakeWriting.Text);

            DisplayBirthdayPartyCost();
        }
Esempio n. 4
0
        public Form1()
        {
            InitializeComponent();
            dinnerParty = new DinnerParty((int)numericUpDown1.Value,
                                            healthyBox.Checked, fancyBox.Checked );
            DisplayDinnerPartyCost();

            birthdayParty = new BirthdayParty((int)numberBirthday.Value,
                                            fancyBirthday.Checked, cakeWriting.Text);

            DisplayBirthdayPartyCost();
        }