/// <summary> /// Polikinlik Tanıma ekranını açıyoruz .. /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void hastaKabulToolStripMenuItem_Click(object sender, EventArgs e) { UIPatientInfo patient = new UIPatientInfo(); patient.MdiParent = this; patient.Show(); patient.Location = new Point(100, 7); }
/// <summary> /// Yeni Butonu /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void btnYeni_Click(object sender, EventArgs e) { this.Hide(); UIPatientInfo patient = new UIPatientInfo(); patient.MdiParent = this.MdiParent; patient.Show(); process.Location = new Point(500, 55); }