コード例 #1
0
ファイル: MainForm.cs プロジェクト: najeraz/samsara-projects
 private void dBMSToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         this.Cursor = Cursors.WaitCursor;
         DBMSForm frmDBMS = new DBMSForm();
         frmDBMS.Show();
     }
     finally
     {
         this.Cursor = Cursors.Default;
     }
 }
コード例 #2
0
 public DBMSFormController(DBMSForm instance)
 {
     this.frmDBMS = instance;
     this.srvDBMS = SamsaraAppContext.Resolve <IDBMSService>();
     this.InitializeFormControls();
 }