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

Problem with RadRibbonBar black square insted form tittle label

3 Answers 83 Views
RibbonBar
This is a migrated thread and some comments may be shown as answers.
Alejandro
Top achievements
Rank 1
Alejandro asked on 12 Oct 2016, 10:17 PM

Hi,
Im testing Telerik Winforms UI and i have an issue with forms wich contains RadRibbonBar. In general terms this is the case:

-- Create a MDI Parent form
-- Create MDI Child RadRibbonBar form 
-- and when i call Show() evento of the child form this is the result:

[url=https://postimg.org/image/rhjjetn0d/][img]https://s14.postimg.org/rhjjetn0d/Error1.png[/img][/url]

Issues:

- Style broken i used Telerik Metro Blue
- Form Text shows black square
- Double Min, Restore, max buttons (both functional)

and when i use ShowDialog() Event

[url=https://postimg.org/image/xwikbhtq5/][img]https://s14.postimg.org/xwikbhtq5/Right.png[/img][/url]

I tried install previous versions but nothing

Anyone can help me?

3 Answers, 1 is accepted

Sort by
0
Alejandro
Top achievements
Rank 1
answered on 12 Oct 2016, 10:19 PM
Problem Images
0
Accepted
Dess | Tech Support Engineer, Principal
Telerik team
answered on 13 Oct 2016, 09:54 AM
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
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.
0
Alejandro
Top achievements
Rank 1
answered on 20 Oct 2016, 02:55 PM
Thank you so much. It works :D  
Tags
RibbonBar
Asked by
Alejandro
Top achievements
Rank 1
Answers by
Alejandro
Top achievements
Rank 1
Dess | Tech Support Engineer, Principal
Telerik team
Share this question
or