Esempio n. 1
0
 private void iSPToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         this.Cursor = Cursors.WaitCursor;
         ISPForm frmISP = new ISPForm();
         frmISP.Show();
     }
     finally
     {
         this.Cursor = Cursors.Default;
     }
 }
 public ISPFormController(ISPForm instance)
 {
     this.frmISP = instance;
     this.srvISP = SamsaraAppContext.Resolve <IISPService>();
     this.InitializeFormControls();
 }