Beispiel #1
0
 public AddRoundForm(Model.QuizzyDB database)
 {
     this.database = database;
     InitializeComponent();
     comboSeason.Items.AddRange(database.seasons.Where(q => q.deleted == 0).ToArray());
     enableButton();
     comboSeason.FlatStyle     = FlatStyle.Flat;
     comboSeason.DropDownStyle = ComboBoxStyle.DropDownList;
 }
Beispiel #2
0
 public AddSeasonForm(Model.QuizzyDB database)
 {
     this.database = database;
     InitializeComponent();
     btnAdd.Enabled = fldSeason.Text.Length > 0;
 }