This question is locked. New answers and comments are not allowed.
Hi,
I am facing issue in applying theme at runtime.
I am able to set the appl;ication theme by the specified code:
public MainPage()
{
StyleManager.ApplicationTheme = new Office_SilverTheme();
InitializeComponent();
}
My requirement is to change the application theme at runtime on change of my Theme/Skin Dropdown:
private void cmbThemes_SelectionChanged(object sender, Telerik.Windows.Controls.SelectionChangedEventArgs e)
{
if (cmbThemes != null)
{
StyleManager.ApplicationTheme = new VistaTheme();
}
}
So, please provide a solution as displaying in the given example:
http://demos.telerik.com/silverlight/themes/
Thanks & Regards,
Shiv.
I am facing issue in applying theme at runtime.
I am able to set the appl;ication theme by the specified code:
public MainPage()
{
StyleManager.ApplicationTheme = new Office_SilverTheme();
InitializeComponent();
}
My requirement is to change the application theme at runtime on change of my Theme/Skin Dropdown:
private void cmbThemes_SelectionChanged(object sender, Telerik.Windows.Controls.SelectionChangedEventArgs e)
{
if (cmbThemes != null)
{
StyleManager.ApplicationTheme = new VistaTheme();
}
}
So, please provide a solution as displaying in the given example:
http://demos.telerik.com/silverlight/themes/
Thanks & Regards,
Shiv.