private void btnedit_Click(object sender, EventArgs e) { mapclass mc = new mapclass(); DataTable dt = new DataTable(); map f = new map(); f.FormClosed += new FormClosedEventHandler(f_FormClosed); f.mode = type_mode.mode.edit; if ((dataGridView1.Rows.Count == 0) || (dataGridView1.CurrentRow.Index == -1)) { MessageBox.Show("سطری انتخاب نشده است"); return; } int cr = dataGridView1.CurrentRow.Index; if (cr >= 0) { string id = dataGridView1[0, cr].Value.ToString(); f.txtid.Enabled = false; dt = mc.Search(id); if (dt.Rows.Count > 0) { f.txtid.Text = dt.Rows[0]["id"].ToString(); f.txtproject.Text = dt.Rows[0]["project"].ToString(); f.txtsize.Text = dt.Rows[0]["size"].ToString(); f.txtadviser.Text = dt.Rows[0]["adviser"].ToString(); f.txtplace.Text = dt.Rows[0]["place_keeping"].ToString(); f.txtdescribe.Text = dt.Rows[0]["others_describetions"].ToString(); f.MdiParent = this.ParentForm; f.Show(); } else { MessageBox.Show("!این سطر حذف شده است، لطفا از دکمه بازآوری استفاده نمایید"); } } }
private void نقشهToolStripMenuItem_Click(object sender, EventArgs e) { UIL.map f = new UIL.map(); f.MdiParent = this; f.Show(); }