You get the object by casting the DataBoundItem to the specified type:
AdressBokPerson currentObject = (AdressBokPerson)dataGridView1.CurrentRow.DataBoundItem;
You get the object by casting the DataBoundItem to the specified type:
AdressBokPerson currentObject = (AdressBokPerson)dataGridView1.CurrentRow.DataBoundItem;