erm moment mal wieso eigentlich im Constructer nochmal create aufrufen??
set_koordinaten ist doch schon dein constructor.
Delphi-Quellcode:
constructor TButtonskin.set_koordinaten;
begin
with TButtonskin.Create(self) do begin
Parent := parent;
OnMouseDown := buttonskinonmousedown;
end;
end;
macht keinen Sinn, wenn dann:
Delphi-Quellcode:
constructor TButtonskin.set_koordinaten;
begin
inherited Create(Self);
Parent := parent;
OnMouseDown := buttonskinonmousedown;
end;