private void button2_Click(object sender, EventArgs e) { Ayrinti ayrinti = new Ayrinti(); ayrinti.ShowDialog(); Doldur(); }
private void MenuGuncelle_Click(object sender, EventArgs e) { int id = Convert.ToInt32(dtgVeri.SelectedRows[0].Cells["Id"].Value); Ayrinti ayrinti = new Ayrinti(id, false); ayrinti.ShowDialog(); Doldur(); }
private void dtgVeri_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { if (e.RowIndex == -1) { return; } int id = Convert.ToInt32(dtgVeri.SelectedRows[0].Cells["Id"].Value); Ayrinti ayrinti = new Ayrinti(id, false); ayrinti.ShowDialog(); Doldur(); }