To be able do deal with form events, it's important to attach the request, that is send to a controller action after submitting a form, to the form created in that action.
public function registerAction(Request $request)
{
$data = new ExampleObject();
$form = $this->createForm(Example...