private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e) { if (e.RowIndex >= 0) { samochody = wypozyczalnia.zwrocSamochodOId(int.Parse(dataGridView1.Rows[e.RowIndex].Cells["Id_samochodu"].Value.ToString())); selectedId = int.Parse(dataGridView1.Rows[e.RowIndex].Cells["Id_samochodu"].Value.ToString()); dataGridView1.Rows[e.RowIndex].Selected = true; label2.Text = samochody.Marka + " " + samochody.Model; } }
public bool Usun(Samochody samochod) { for (int i = 0; i < samochody.Count; i++) { if (samochody[i].Id_samochodu == samochod.Id_samochodu) { samochody.Remove(samochody[i]); return(true); } } return(false); }
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e) { if (e.RowIndex >= 0) { klient = wypozyczalnia.zwrocKlientaOId(int.Parse(dataGridView1.Rows[e.RowIndex].Cells["Id_klienta"].Value.ToString())); samochod = wypozyczalnia.zwrocSamochodOId(int.Parse(dataGridView1.Rows[e.RowIndex].Cells["Id_samochodu"].Value.ToString())); selectedId = int.Parse(dataGridView1.Rows[e.RowIndex].Cells["Id_samochodu"].Value.ToString()); dataGridView1.Rows[e.RowIndex].Selected = true; szczegoly(); if (klient != null) { label2.Text = klient.Imie + " " + klient.Nazwisko; } else { label2.Text = "nie wypozyczony"; } } }