I use Delphi 10.3, some styles (Of RAD only) I write right-to-left desktop applications. with "normal" widows.
The pagecontrol draw the tabsheet from left-to-right, like this
but I want the page control to paint itself from right-to-left, like this
for that, I use the code
procedure TMasterOfAllFrm.SetPageControlRightToLeft(PC : TPageControl);
const
LVM_FIRST = $1000;
LVM_GETHEADER = LVM_FIRST + 31;
var
header: thandle;
begin
// START - to restore - open all lines
header := SendMessage(PC.Handle, LVM_GETHEADER, 0, 0);
SetWindowLong(header, GWL_EXSTYLE, GetWindowLong(header, GWL_EXSTYLE) or
WS_EX_LAYOUTRTL or WS_EX_NOINHERITLAYOUT);
SetWindowLong(PC.Handle, GWL_EXSTYLE, GetWindowLong(PC.Handle,
GWL_EXSTYLE) or WS_EX_LAYOUTRTL or WS_EX_NOINHERITLAYOUT);
// END - to restore - open all lines
end;
it works fine, but when I use STYLE the caption of the tabsheet is "flipped as Mirror view", like this
how can I rotate that CAPTION, I tried to flip the font, remove the [sefont] from the pagecontrol, flip the string.... nada. no success.
Does someone have a better idea?
Then you have to MANUALLY hide the tabs of the TPageControl.