Registriert seit: 5. Jan 2005
Ort: Stadthagen
9.454 Beiträge
Delphi 10 Seattle Enterprise
|
AW: TPanel.ParentBackground setzt sich - irgendwann - zurück (?)
5. Jan 2016, 14:38
Liegt wohl hier dran
Delphi-Quellcode:
{ TCustomPanel }
constructor TCustomPanel.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
ControlStyle := [csAcceptsControls, csCaptureMouse, csClickEvents,
csSetCaption, csOpaque, csDoubleClicks, csReplicatable, csPannable, csGestures];
{ When themes are on in an application default to making
TCustomPanel's paint with their ParentBackground }
if StyleServices.Enabled then
ControlStyle := ControlStyle + [csParentBackground] - [csOpaque];
[...]
Kaum macht man's richtig - schon funktioniert's
Zertifikat: Sir Rufo (Fingerprint: ea 0a 4c 14 0d b6 3a a4 c1 c5 b9 dc 90 9d f0 e9 de 13 da 60)
|
|
Zitat
|