Say I have a TForm with some components that I want to use as 'template' for other forms. In lazarus I create new form by New>Inherited item> inherited project component. So I have new form with all the default components and everything is dandy except that I need to call parent methods in couple of places like that:

Code:
procedure TmenuPlan.FormCreate(Sender: TObject);
begin
  inherited;
end;


procedure TmenuPlan.quitBtnClick(Sender: TObject);
begin
  inherited;
end;
It seems redundant, can I somehow skip that step? I mean assign default event methods to existing components unless their behaviour needs to be overriden