private void metroButton1_Click(object sender, EventArgs e)
        {
            TournamentForm tf = new TournamentForm();

            tf.Show(this);
            this.Hide();
        }
 public TeamSelection(TournamentForm tf, int id)
 {
     InitializeComponent();
     tourID         = id;
     tournamentForm = tf;
 }