예제 #1
0
파일: frmMain.cs 프로젝트: anneilb/ce-dev
        private void mnuIncidentsDisplayIncidentsByCustomer_Click(object sender, EventArgs e)
        {
            Form customerIncidentsForm = new frmCustomerIncidents();

            customerIncidentsForm.MdiParent = this;
            customerIncidentsForm.Show();
        }
예제 #2
0
파일: frmMain.cs 프로젝트: anneilb/ce-dev
 private void mnuIncidentsDisplayIncidentsByCustomer_Click(object sender, EventArgs e)
 {
     Form customerIncidentsForm = new frmCustomerIncidents();
     customerIncidentsForm.MdiParent = this;
     customerIncidentsForm.Show();
 }