Completed
Last Updated: 02 Jun 2014 07:37 by ADMIN
ADMIN
Ralitsa
Created on: 28 Feb 2014 07:53
Category: RibbonBar
Type: Bug Report
0
FIX. RadRibbonBar - Setting the Text property of RadRibbonBar is changing the Form`s title when the ControlBox property is false
To reproduce:  
1. Add WindowsForm and RadRibbonBar 
2. Use this code snippet 
this.Text = string.Empty;
this.ControlBox = false;
this.radRibbonBar1.Text = "Example"; 
3. Run the project and you will see that title is visible in the Form and in the RadRibbonBar

Workaround: Use RadForm or RadRibbonForm and set the Text property.
If you use the WindowsForm, please use this code snippet: 
this.ControlBox = false;
this.radRibbonBar1.Text = "Example";
this.FormBorderStyle = FormBorderStyle.None;
0 comments