This question is locked. New answers and comments are not allowed.
Hello, I've tried to change the window theme on the inherited RadWindow on several ways:
1.) In XAML itself:
<base:WindowBase x:Class="ListScreenView"
xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Navigation"
telerik:Theming.Theme="Windows7" ...>
or
telerik:StyleManager.Theme="Windows7" ..>
2.) in code-behind:
class ListScreenView : WindowBase
{
public ListScreenView()
{
InitializeComponent();
Theme theme = ThemeManager.FromName("Windows7");
StyleManager.SetTheme(this, theme);
}
...
}
3.) On application level by:
StyleManager.ApplicationTheme = ThemeManager.FromName("Windows7");
And none of this works. Window keeps the default theme other than Windows 7 one.
I wish to be able to change the window border style by changing the theme on the window.
Can you please assist me on this issue?