private void putovanjaGrid_MouseDoubleClick(object sender, MouseEventArgs e) { var id = putovanjaGrid.SelectedRows[0].Cells[0].Value; cijenaInput cijenaInput = new cijenaInput(int.Parse(id.ToString())); cijenaInput.Show(); }
private void dodajPutovanje_Click(object sender, EventArgs e) { cijenaInput cijenaInput = new cijenaInput(); cijenaInput.Show(); }
private void dodajKorisnikaBtn_Click(object sender, EventArgs e) { cijenaInput cijenaInput = new cijenaInput(null, _Id); cijenaInput.Show(); }