Completed
Last Updated: 27 Jan 2015 15:18 by ADMIN
Completed
Last Updated: 13 Jan 2015 15:13 by ADMIN
FIX. RadRibbonForm prevents the Windows taskbar to show when taskbar AutoHide is on
Completed
Last Updated: 23 Dec 2014 11:31 by ADMIN
To reproduce:
public RadRibbonForm1()
{
    InitializeComponent();
    radRibbonBar1.Expanded = false;
}     

private void button1_Click(object sender, EventArgs e)
{
    if (ribbonTab2.Visibility == Telerik.WinControls.ElementVisibility.Visible)
    {
        ribbonTab2.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
    }
    else
    {
        ribbonTab2.Visibility = Telerik.WinControls.ElementVisibility.Visible;
    }
}

Workaround:
private void button1_Click(object sender, EventArgs e)
{
  
    this.radRibbonBar1.RootElement.SuspendLayout();
    if (ribbonTab2.Visibility == Telerik.WinControls.ElementVisibility.Visible)
    {
        ribbonTab2.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
    }
    else
    {
        ribbonTab2.Visibility = Telerik.WinControls.ElementVisibility.Visible;
    }
    this.radRibbonBar1.RootElement.ResumeLayout(false);          
}
Completed
Last Updated: 21 Nov 2014 15:09 by ADMIN
To rperoduce:
- Set the themes as follows:
var theme = new Office2010BlackTheme();
new Telerik.WinControls.RadControlSpy.RadControlSpyForm().Show();
ThemeResolutionService.ApplicationThemeName = theme.ThemeName;

this.radRibbonBar1.ElementTree.EnableApplicationThemeName = false;
this.radRibbonBar1.ThemeName = "ControlDefault";

- Start and collapse the ribbon tabs. 
- Click on a tab to show its controls.

Workaround: Use the ApplyThemeToControlTree method instead of settig the ApplicationThemeName property.
ThemeResolutionService.ApplyThemeToControlTree(this, "Windows");
Completed
Last Updated: 17 Nov 2014 08:45 by ADMIN
To reproduce:
- Add a ribbon bar to a blank form and set the theme to Office2013Light
- Disable the title bar buttons:
this.radRibbonBar1.MaximizeButton = false;
this.radRibbonBar1.MinimizeButton = false;
this.radRibbonBar1.CloseButton = false;

- The buttons are still visible when the backstage view button is clicked.

Workaround:
radRibbonBar1.BackstageControl.BackstageElement.TitleBarElement.CloseButton.Visibility = Telerik.WinControls.ElementVisibility.Hidden;
radRibbonBar1.BackstageControl.BackstageElement.TitleBarElement.MaximizeButton.Visibility = Telerik.WinControls.ElementVisibility.Hidden;
radRibbonBar1.BackstageControl.BackstageElement.TitleBarElement.MinimizeButton.Visibility = Telerik.WinControls.ElementVisibility.Hidden;
Completed
Last Updated: 13 Nov 2014 07:04 by ADMIN
When you set the ApplicationMenuStyle property to  BackstageView at design time and set its  theme to Office2013Dark or Office2013Light you lose the ability to return back to the designer page  by clicking the back button.

Workaround: select  the RadRibbonBar via Visual Studio's Document Outline window (ctrl+W, U) or via Visual Studio's Property Grid's Component combobox (on the top of the property grid)
Completed
Last Updated: 20 Oct 2014 13:52 by ADMIN
RadRibbonBarGroup consists of two FillPrimitives (in addition to the main FillPrimitive). These fills should be exposed to the user, so that s\he can tell what their colors should be.

Resolution: 
RadRibbonBarGroup consists of two FillPrimitives which are exposed: GroupFill and BodyFill. You can set their color using the following code snippet: 
radRibbonBarGroup1.BodyFill.BackColor = Color.MediumPurple;
radRibbonBarGroup1.GroupFill.BackColor = Color.MediumSeaGreen;
Completed
Last Updated: 20 Oct 2014 11:51 by ADMIN
To reproduce:
  Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
        For index = 1 To 10
            Dim Temp As New RadButtonElement
            Temp.Image = Image.FromFile("C:\Program Files (x86)\Telerik\RadControls for WinForms Q3 2012\Examples\QuickStart\Resources\1RibbonMenuNewMagenta.png")
            Temp.TextImageRelation = TextImageRelation.ImageAboveText
            Temp.ImageAlignment = ContentAlignment.MiddleCenter
            Temp.Text = "Test"
            RadRibbonBarGroup1.Items.Add(Temp)
        Next

        'workaround
        'RadRibbonBar1.RibbonBarElement.ElementTree.ApplyThemeToElement(RadRibbonBar1.RibbonBarElement)
    End Sub
Completed
Last Updated: 01 Oct 2014 13:02 by ADMIN
To reproduce:

Add a RadRibbonForm and set the theme to Office2013Light. Start the application and click the backstage button. Click the close button and you will see an exception.

Workaround:

this.RibbonBar.BackstageControl.BackstageElement.TitleBarElement.CloseButton.MouseDown += TitleBarElement_MouseDown;
void TitleBarElement_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
{
    this.RibbonBar.BackstageControl.BackstageElement.TitleBarElement.CanManageOwnerForm = false;
    this.Close();
}

Completed
Last Updated: 01 Oct 2014 13:02 by ADMIN
To reproduce:

Create a RadRibbonForm and set its ApplicationMenuStyle to BackstageView. Start the application open the backstage, click the maximize button and then again to set the Form back to normal. You will notice that the Form cannot be set back to normal.

Workaround:

Manually change the WindowState of the Form.

this.RibbonBar.BackstageControl.BackstageElement.TitleBarElement.MaximizeButton.MouseDown +=MaximizeButton_Click;

void MaximizeButton_Click(object sender, EventArgs e)
        {
            if (this.WindowState == FormWindowState.Maximized)
            {
                this.WindowState = FormWindowState.Normal;
            }
            else if (this.WindowState == FormWindowState.Normal)
            {
                this.WindowState = FormWindowState.Maximized;
            }
        }
Completed
Last Updated: 08 Sep 2014 09:51 by ADMIN
Completed
Last Updated: 10 Jul 2014 14:09 by ADMIN
To reproduce:
- Add ribbon bar with a few buttons subscribe to ScreenTipNeeded event and show different text for each button.
- Collapse the tabs by clicking the collapse button, the expand a tab by clicking its name.
- You will notice that the ScreenTipNeeded event is not fired.

Workaround:
Create separate screen tip for each element:
RadOffice2007ScreenTipElement button2Tip = new RadOffice2007ScreenTipElement();
button2Tip.CaptionLabel.Text = "button 2";
button2Tip.MainTextLabel.Text = "button 2";

radButtonElement2.ScreenTip = button2Tip;
Completed
Last Updated: 10 Jul 2014 12:19 by ADMIN
When clicking with the right mouse-button on one of the system buttons, and then dragging the mouse over the button until leaving it, without releasing the mouse-button itself, the button stays marked. It is reproducible in all themes.

Workaround:

public Form1()
{
    InitializeComponent();
 
    this.radRibbonBar1.RibbonBarElement.RibbonCaption.MinimizeButton.MouseLeave += Button_MouseLeave;
    this.radRibbonBar1.RibbonBarElement.RibbonCaption.MaximizeButton.MouseLeave += Button_MouseLeave;
    this.radRibbonBar1.RibbonBarElement.RibbonCaption.CloseButton.MouseLeave += Button_MouseLeave;
}

private void Button_MouseLeave(object sender, EventArgs e)
{
    RadImageButtonElement btn = sender as RadImageButtonElement;
    if (btn != null)
    {
        btn.IsMouseDown = false;
    }
}
Completed
Last Updated: 24 Jun 2014 13:05 by ADMIN
RadRibbonBar, the back stage button in not exposed in style builder.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: RibbonBar
Type: Bug Report
0
If you maximize an mdi child form in a mdi parent, the buttons of the child form appear in the title bar of the parent form, but not in the tabstrip of the RadRibbonBar contained in the parent form.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: RibbonBar
Type: Bug Report
1
If you press the Alt key once, you get the KeyTips displayed. If you press it once more, the KeyTips should become hidden and the focus should be returned to the previously focused control.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: RibbonBar
Type: Bug Report
0
When you set the EnableKeyMap property to false, this setting is not serialized in the designer.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: RibbonBar
Type: Bug Report
1
When you open the content popup of a collapsed group and click on a button that shows a dialog form, the popup stays opened.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
Go to Examples app, section RibbonBar >> FirstLook. Decrease the size of the main Examples form. Dropdownbuttons will appear instead of the actual content in RadRibbonBar. Open one of these buttons and click on the empty space area of the popup. The popup will close, but is should stay opened.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: RibbonBar
Type: Bug Report
1
Go to the Examples, RibbonBar >> FirstLook. Decrease the width of the main form. Now open the 'Size' popup of RadRibbonBar. You will notice that the Size dropdown button is not properly aligned i n the popup.