Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   GUI-Design mit VCL / FireMonkey / Common Controls (https://www.delphipraxis.net/18-gui-design-mit-vcl-firemonkey-common-controls/)
-   -   Delphi VCL TIWRegion Refresh Problem (https://www.delphipraxis.net/169598-vcl-tiwregion-refresh-problem.html)

klabauta 31. Jul 2012 08:41

VCL TIWRegion Refresh Problem
 
Hallo Zusammen,

ich habe das Problem, dass sobald ich ein Refresh (auf irgendeine Weise) auf ein TIWRegion Objekt mache, alle Elemente die auf der Region liegen verschwinden. Habe ich irgendwelche Einstellungen versäumt zu setzen oder funktioniert das einfach nicht?
Benutze Version 11.0.0 mit Delphi XE.

Gruss

Jonas Shinaniganz 2. Sep 2012 22:57

AW: VCL TIWRegion Refresh Problem
 
Die Regions sind nicht gut dokumentiert und Ich kann dein Problem hier nachvollziehen.
Die Regions sind auch ansonsten nicht sonderlich zu gebrauchen wie es mir scheint.

Ich erzeuge im Code 5 Regions und habe sie alTop Aligned aber mir wurde nichts angezeigt.
Dann habe Ich versucht mal unterschiedliche Positionen mit anzugeben, immerhin, dann wurde eine Blaue Region gezeichnet...
Was ist da los -.-???

Delphi-Quellcode:
procedure TIWForm2.IWAppFormCreate(Sender: TObject);
var
  rehio1, rehio2, rehio3, rehio4 : TIWRegion;
begin
 rehio1 := TIWRegion.Create(Self);
 rehio1.Parent := Self;
 rehio1.Color := clred;
 rehio1.Width := 100;
 rehio1.Top := 100;
 rehio1.Visible := True;

 rehio2 := TIWRegion.Create(Self);
 rehio2.Parent := Self;
 rehio2.Color := clblack;
 rehio2.Width := 200;
 rehio2.Top := 200;
 rehio2.Visible := True;

 rehio4 := TIWRegion.Create(Self);
 rehio4.Parent := Self;
 rehio4.Color := clblue;
 rehio4.Width := 300;
 rehio4.Top := 300;
 rehio4.Visible := True;

 rehio3 := TIWRegion.Create(Self);
 rehio3.Parent := Self;
 rehio3.Color := clyellow;
 rehio3.Width := 400;
 rehio3.Top := 400;
 rehio3.Visible := True;

end;


Alle Zeitangaben in WEZ +1. Es ist jetzt 14:44 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz