how can I change the theme for just the current form at runtime and not the whole application
This is for a dialog form that opens in front of the main form that has a different theme
This changes the theme for the whole application not just the open dialog and the following seems to not work at all
This is for a dialog form that opens in front of the main form that has a different theme
ThemeResolutionService.ApplicationThemeName = ThemeNamePrivate Sub ApplyTheme() Dim mytheme As New Telerik.WinControls.Themes.Office2010BlackTheme Me.ThemeClassName = "Telerik.WinControls.UI.RadForm" Me.ThemeName = mytheme.ThemeName End Sub