private void buttonNuevo_Click(object sender, EventArgs e) { EditarForm Guardar = new EditarForm(); Guardar.ShowDialog(); dataGridViewEmpleado.Rows.Clear(); LlenaCampos(); }
private void buttonEditar_Click(object sender, EventArgs e) { if (dataGridViewEmpleado.SelectedRows.Count > 0) { EditarForm editar = new EditarForm(); editar.Nombre = dataGridViewEmpleado.CurrentRow.Cells["ColumnNombre"].Value.ToString(); editar.Id = (int)dataGridViewEmpleado.CurrentRow.Cells["ColumnId"].Value; editar.Tipo = dataGridViewEmpleado.CurrentRow.Cells["ColumnTipo"].Value.ToString(); editar.NombreUsuario = dataGridViewEmpleado.CurrentRow.Cells["ColumnUsuario"].Value.ToString(); editar.Email = dataGridViewEmpleado.CurrentRow.Cells["ColumnEmail"].Value.ToString(); editar.Pass = dataGridViewEmpleado.CurrentRow.Cells["ColumnPass"].Value.ToString(); editar.ShowDialog(); dataGridViewEmpleado.Rows.Clear(); LlenaCampos(); } else { MessageBox.Show("Por favor selecione una fila!"); } }