How can I globally set theme for application?
I know I can accomplish it in at run-time with the following.
I know I can accomplish it in at run-time with the following.
public Form1()
{
InitializeComponent();
ThemeResolutionService.ApplicationThemeName = "Aqua";
}
Is there a way to iterate through all the Telerik controls in my application and set the theme or use a style inheritance scheme at design-time?
Thanks!