Hello Alejandro,
Thank you for writing.
We already have a similar issue logged in our feedback portal and I have added a vote for it on your behalf. You can track its progress, subscribe for status changes and add your comments on the following link - feedback item.
Currently, the possible solution that I can suggest is to set the RadRibbonFormBehavior.AllowTheming property to false.
I hope this information helps. Should you have further questions I would be glad to help.
Regards,
Dess
Telerik by Progress
Thank you for writing.
We already have a similar issue logged in our feedback portal and I have added a vote for it on your behalf. You can track its progress, subscribe for status changes and add your comments on the following link - feedback item.
Currently, the possible solution that I can suggest is to set the RadRibbonFormBehavior.AllowTheming property to false.
public
partial
class
RadForm1 : Telerik.WinControls.UI.RadForm
{
public
RadForm1()
{
InitializeComponent();
ThemeResolutionService.ApplicationThemeName =
"TelerikMetroBlue"
;
this
.IsMdiContainer =
true
;
RadRibbonForm1 form =
new
RadRibbonForm1();
((RadRibbonFormBehavior)form.FormBehavior).AllowTheming =
false
;
form.Text =
"MDI Child 1"
;
form.MdiParent =
this
;
form.Show();
}
}
I hope this information helps. Should you have further questions I would be glad to help.
Regards,
Dess
Telerik by Progress
Check out the Windows Forms project converter, which aids the conversion process from standard Windows Forms applications written in C# or VB to Telerik UI for WinForms.For more information check out this blog post and share your thoughts.