示例#1
0
 public Form1()
 {
     InitializeComponent();
     dinnerParty = new DinnerParty(); // { NumberOfPeople = 5 };
     dinnerParty.SetPartyOptions(5, checkBoxFancy.Checked);
     numericUpDown1.Value = dinnerParty.GetNumberOfPeople();
     dinnerParty.SetHealthyOption(checkBoxHealthy.Checked);
     //dinnerParty.CalculateCostOfDecorations(checkBoxFancy.Checked);
     DisplayDinnerPartyCost();
 }
示例#2
0
 public Form1()
 {
     InitializeComponent();
     dinnerParty = new DinnerParty(); // { NumberOfPeople = 5 };
     dinnerParty.SetPartyOptions(5, checkBoxFancy.Checked);
     numericUpDown1.Value = dinnerParty.GetNumberOfPeople();
     dinnerParty.SetHealthyOption(checkBoxHealthy.Checked);
     //dinnerParty.CalculateCostOfDecorations(checkBoxFancy.Checked);
     DisplayDinnerPartyCost();
 }
示例#3
0
 private void numericUpDown1_ValueChanged(object sender, EventArgs e)
 {
     dinnerParty.SetPartyOptions((int)numericUpDown1.Value, checkBoxFancy.Checked);
     DisplayDinnerPartyCost();
 }