This is a migrated thread and some comments may be shown as answers.

Theme design issue

1 Answer 101 Views
Themes and Visual Style Builder
This is a migrated thread and some comments may be shown as answers.
Marco
Top achievements
Rank 2
Veteran
Marco asked on 03 Jul 2012, 02:45 PM

About the theme issue with the design mode. I have notice that's this bug didn't affect all the control.

These one doesn't work:

  • RadForm (think that's everybody have notice this one...)
  • RadRichTextBox
  • RadCommandBar

These one are working pretty good:

  • RadButton
  • RadListView
  • RadRadioButton

The ApplicationThemeName trick save my life at the runtime (I can afford with a BFOD (blue forms of death), my users can't...).

Perhaps you should write in the docs where is the best place to put these three lignes of code (I personnaly think these kind of things should be written on application level)  

 

Imports Telerik.WinControls.Themes
Imports Telerik.WinControls
  
Namespace My
  
    
    Partial Friend Class MyApplication
  
        Public Sub ApplicationStartup() Handles Me.Startup
  
            Dim theme As New Office2010SilverTheme
            theme.DeserializeTheme()
            ThemeResolutionService.ApplicationThemeName = "Office2010Silver"
  
            End Sub
  
    End Class
  
End Namespace

1 Answer, 1 is accepted

Sort by
0
Accepted
Jack
Telerik team
answered on 04 Jul 2012, 05:12 PM
Hi Marco,

Thank you for contacting us.

We are aware of these issues. They will be addressed in our upcoming service pack. Most of the issues are addressed in the latest internal build that we have just released. You are correct, the best place to put the described code is the Form.Load event of the main application form. We will update our documentation accordingly and I updated your Telerik points for this hint.

Should you have any further questions, do not hesitate to ask.
 
Greetings,
Jack
the Telerik team
RadControls for WinForms Q2'12 release is now live! Check out what's new or download a free trial >>
Tags
Themes and Visual Style Builder
Asked by
Marco
Top achievements
Rank 2
Veteran
Answers by
Jack
Telerik team
Share this question
or