Hi,
I'm trying to change the theme of a RadWindow from C# but couldn't get it to work. This is my code:
XAML:
<telerikNavigation:RadWindow
x:Name="winMainWindow"
... />
C# (Button click event):
StyleManager.SetTheme(this.winMainWindow, new VistaTheme());
Note that the RadWindow is the root element, and my code behind class is inheriting from RadWindow as follow:
public partial class MainWindow : RadWindow
{
...