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;