ExecuteNonQuery returns an int containing the number of rows affected so you could just put an if statement around your query execution
if(command.ExecuteNonQuery() > 0)
{
MessageBox.Show("Person deleted");
}
else
{
MessageBox.show("Person not found");
}