private void editplataforma_Click(object sender, RoutedEventArgs e) { int index = grid_datos.SelectedIndex; int id = index > -1 ? ListPlataforma[index].Id_plataforma : -1; Editar_plataforma editar_Plataforma = new Editar_plataforma(id); editar_Plataforma.Show(); this.Close(); }
private void editplataforma_Click(object sender, RoutedEventArgs e) { int index = grid_datos.SelectedIndex; if (index == -1) { MessageBox.Show("Seleccione una Plataforma"); return; } int id = index > -1 ? (grid_datos.SelectedItem as Datos.Plataforma).Id_plataforma : -1; Editar_plataforma editar_Plataforma = new Editar_plataforma(id); editar_Plataforma.Show(); this.Close(); }