Hallo Uwe,
habe es mal gesetzt (zusätzlich auch visible := true) ... bringt beides nichts
Delphi-Quellcode:
// Default size of fam card
self.Width := 600;
self.Height := 400;
// Create header of card
Header := FAMPanel.Create(self);
Header.SetSubComponent(true);
Header.Visible := true;
Header.Parent := self;
Header.Color := _CorporateDesign.gray;
Header.Align := alTop;
Header.Height := 90;
// Create content of card
Content := FAMPanel.Create(self);
Content.SetSubComponent(true);
Content.Visible := true;
Content.Parent := self;
Content.Color := _CorporateDesign.white;
Content.Align := alClient;
// Create footer of card
Footer := FAMPanel.Create(self);
Footer.SetSubComponent(true);
Footer.Visible := true;
Footer.Parent := self;
Footer.Color := _CorporateDesign.gray;
Footer.Align := alBottom;
Footer.Height := 90;
andere vorschläge
?