private void mnuAdvanceCompetitor1_Click(object sender, EventArgs e) { try { //Advance the competitor in the #1 slot to the next level in the tournament _bracket.Advance(_bracket.Competitor); //Refresh the control now that we've advanced a competitor Reload(null, null); } catch (Exception ex) { Ui.DisplayError(ex.Message); } }