private void splashFormTimer_Tick(object sender, EventArgs e)
        {
            //1. intantiate
            selectionForm selectionForm = new selectionForm();

            this.splashFormTimer.Enabled = false;
            selectionForm.Show();
            this.Hide();
        }
Exemplo n.º 2
0
 /// <summary>
 /// this event handler will take you to the selection form with the same selection and values.
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void _backButton_Click(object sender, EventArgs e)
 {
     previousForm.Show();
     this.Hide();
 }