A classic scenario is MVP pattern with passive view.
The form implememts an view inteface that has a NameChanged event.
The presenter that creates/uses the view subscribes to this event.
When the name text in textbox is changed view fires this event. The presenter is then notified.
Since the presenter only knows about event from view interface you can provide a mock view for testing. The view is completely decoupled from presenter.