wie wäre es mit
Delphi-Quellcode:
Controlstyle := Controlstyle - [csAcceptsControls] + [csSetCaption];
// bzw.
Exclude(Controlstyle, csAcceptsControls);
Include(Controlstyle, csSetCaption);
und wenn ich mich so umseh, wird sowas bei den Komponenten der
VCL auch fast immer im Constructor gemacht.
Zitat:
Delphi-Quellcode:
constructor TScrollBox.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
ControlStyle := [csSetCaption, csCaptureMouse, csClickEvents,
csSetCaption, csDoubleClicks, csPannable];