Registriert seit: 6. Mär 2013
6.176 Beiträge
Delphi 10 Seattle Enterprise
|
AW: TFlowPanel, fsTopBottomLeftRight, Linie zwischen Panels
10. Nov 2016, 09:01
Die Ursache würde ich doch in Vcl.ExtCtrls.TCustomFlowPanel.AlignControls(..)
erwarten. Vielleicht sollte es bei diesen komischen Konstanten
Delphi-Quellcode:
const
XIncDir: array[TFlowStyle] of Integer = (1, -1, 1, -1, 1, 1, -1, -1);
YIncDir: array[TFlowStyle] of Integer = (1, 1, -1, -1, 1, -1, 1, -1);
YDeltaConst: array[TFlowStyle] of Integer = (0, 0, -1, -1, 0, 0, 0, 0);
XDeltaConst: array[TFlowStyle] of Integer = (0, 0, 0, 0, 0, 0, -1, -1);
anders sein. Hast du damit mal etwas herumprobiert?
|
|
Zitat
|