private void agregar_contenido_Click(object sender, RoutedEventArgs e) { Gestion_contenido ges = new Gestion_contenido(); ges.Show(); this.Close(); }
private void modificar_contenido_Click(object sender, RoutedEventArgs e) { int select = info.SelectedIndex; if (select == -1) { MessageBox.Show("Se debe seleccionar un contenido", "Aviso", MessageBoxButton.OK, MessageBoxImage.Stop); return; } Gestion_contenido editar = new Gestion_contenido(Contenidos[select].Id_contenido); editar.Show(); this.Close(); }