My application uses a global application wide theme via ThemeResolutionService.
I can view my form, buttons, grids etc in the application theme when using the visual studio designer because I load the application theme in the form constructor.
I have a button that will use a different theme called "RedButton". I can force the button to use the different theme at run time via RadThemeManager using:
myButton.ElementTree.EnableApplicationThemeName = False
myButton.ThemeName = "RedButton"
At runtime, I can see my red button. However; in the visual studio designer, the 'red button' is still using the application theme.
I don't see the ability to disable the application theme on my button in the designer.
How can I get the visual studio designer to show my 'red button' while the application theme is also loaded?