private void öğrenciTanımlarıToolStripMenuItem_Click(object sender, EventArgs e) { ogrenciFormu frm = new ogrenciFormu(); frm.MdiParent = this; //oğrenci formu mdiParent(ana form) olan form1'e bağlandı. frm.Show(); }
private void btnOgrenciFormu_Click(object sender, EventArgs e) { //yorumları kapat öğrenci formunu aç. ogrenciFormu frm = new ogrenciFormu(); this.Close(); frm.Show(); }