I saw a youtube video (can’t remember which one) where the user changed an option in Delphi XE2 to change the default style for an entire FireMonkey application. After much hunting I can’t find the option.
IDE Insight for ‘style’ shows me ‘Default Style – Custom Styles (Forms)’ under ‘Project Options’. But unless I’m being particularly thick, there’s no such option there.
VCL Styles and Firemonkey Styles are fundamentally different.
Because of that I am not sure they should have used the same name.
VCL Styles
TStyleManager.SetStyle('StyleName');to your codeTStyleManagerclassFiremonkey Styles
Editor is Internal to the IDE
TStyleBookResource Property EditorCan also be accessed by Right click on any visual control and selecting either
Note: These two menu choices are only available in desktop apps, not mobile apps.
Once in editor you can select the
Load..button to change the style for the selected TStylebook. If the entire application is using the same TStyleBook it will change the whole application.TStyleBookOn windows 7 all of the styles both VCL and Firemonkey by default are placed in the
C:\Users\Public\Documents\RAD Studio\9.0\StylesdirectoryOne bullet point is a direct answer, but I felt like I had to give the long answer to help others.