A MainMenu option in my app calls:
TStyleManager.SetStyle('Ruby Graphite');
It properly changes the style in my XE2 (Update 3) application almost everywhere. Here's the problem:
I have a TPageControl with 3 TabSheets, each containing a TFrame. The above call properly changes the style of the currently visible TabSheet's components to 'Ruby Graphite'.
However, when I click to switch to another tabsheet, all of its components are invisible until I move my mouse over them. When I return to the original TabSheet, its components too are now not visible until I hover over them.
I tried explicitly calling .Refresh and .Repaint on the frames themselves, but that didn't make the components on them visible.
What's weird is that executing:
TStyleManager.SetStyle('Windows');
returns the style to the standard, with all components visible.
The TTabSheet is on a panel which is on a panel, if that matters. And, I'm using some 3rd party components (not in these frames) that are threaded. I believe that I have disabled them though.
Any suggestions on how to force the visual components on a formerly hidden tab to become visible after changing the style from Windows?
EDIT: Link to short screen video that shows the refresh problem: http://tinyurl.com/sostyle.
I have also on occasion found that the software doesn't respond when clicking on the icons (like maximize) in the upper right corner. There's just something weird going on that is over my head. So far, I've been unable boil this down to a small example from the 40,000 lines of code in the application.