You can use the CellContentClick event and then get whatever you want from any of those columns:
private void DataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
object value = DataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value;
}