On Windows default appearance the tabsheet caption are showed in horizontal (left to right 1) and with the VCL styles enabled they are displayed in vertical (down to top[2]). How I can fix this on Delphi XE5? Detail: I'm using the JvgPageControl component, from JEDI-VCL 3.58.
I want to create an similar interface of DisplayFusion welcome screen [3]. Suggestions are welcome!
Images:
Thanks in advance!

The TJvgPageControl uses the same vcl style hook (
TTabControlStyleHook) of theTPageControlcontrol, so you must create a new style hook inherited from theTTabControlStyleHookand override theDrawTabmethod.Check this basic implementation for the new style hook
Then register the new style hook like this