Esempio n. 1
0
 private void buttonSimulationForm_Click(object sender, EventArgs e)
 {
     try
     {
         SimulationForm form = new SimulationForm();
         form.ShowDialog();
     }
     catch (Exception)
     {
         throw;
     }
 }
Esempio n. 2
0
        private void buttonSimulationForm_Click(object sender, EventArgs e)
        {
            var form = new SimulationForm();

            form.ShowDialog();
        }