private void editarToolStripMenuItem_Click(object sender, EventArgs e) { Tareas.FormInsertarTipoGestion nueva = new FormInsertarTipoGestion(this, dataGridViewTipoGestion.SelectedRows[0].Cells[0].Value.ToString()); nueva.ControlBox = true; nueva.TopMost = true; nueva.WindowState = FormWindowState.Normal; nueva.StartPosition = FormStartPosition.CenterScreen; nueva.Show(); }
private void buttonAddGestion_Click(object sender, EventArgs e) { Tareas.FormInsertarTipoGestion nueva = new FormInsertarTipoGestion(this); nueva.ControlBox = true; nueva.TopMost = true; nueva.WindowState = FormWindowState.Normal; nueva.StartPosition = FormStartPosition.CenterScreen; nueva.Show(); }