Esempio n. 1
0
 private void tiposDeRacksToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         this.Cursor = Cursors.WaitCursor;
         RackTypeForm frmRackType = new RackTypeForm();
         frmRackType.Show();
     }
     finally
     {
         this.Cursor = Cursors.Default;
     }
 }