Hi Helmet,
Thank you for your patience.
We have analyzed the reported issue with Ribbon “Ribbon disappeared while change the themes when ApplyStylesOnApplication is true". In our analysis, we could found that, it occurs due to the ApplyStylesOnApplication property set at run time. This property decides whether to maintain the resource at application level or as framework resource. The resource are merged initially at application level and it is not invoked after that. So as per our new implementation, it is recommended to use ApplyStylesOnApplication in App.xaml.cs.
Please find the code and modified sample:
Code:[C#]
|
public partial class App : Application
{
public App()
{
//Enable the ApplyStylesOnApplication is Here
SfSkinManager.ApplyStylesOnApplication = true;
}
}
|
Screenshot:[Now the Ribbon correctly shown on dynamically changing the theme]
Please try this solution and let us know if it is helpful.
Regards,
Vijayalakshmi VR