Completed
Last Updated: 05 Nov 2014 12:50 by ADMIN
ADMIN
Ralitsa
Created on: 31 Oct 2014 07:58
Category:
Type: Bug Report
0
FIX. RadMenu - the menu items are overlapped when the form is autosize and maximized
To reproduce: 
1. Add RadForm and set the following properties at design time: 
this.AutoSize = true;
this.WindowState = FormWindowState.Maximized;
this.Size = new Size(750, 500); 
2. Add RadMenu and add more than 10 menu items
3. Run the application and you will see that menu items are overlapped (see the attached image)

Workaround: 
Restore the WindowState of form to Normal at design time and set the WindowState to Maximized run time in the Load event of form. Here is the snippet: 
private void RadForm1_Load(object sender, EventArgs e)
{
    this.WindowState = FormWindowState.Maximized;
}
1 comment
ADMIN
Stefan
Posted on: 05 Nov 2014 12:50
We have just issued a new release - Q3 2014 2014.3.1104, which covers this issue and couple more issues important for our customers. For complete list of changes, please refer to our Release Notes (http://www.telerik.com/support/whats-new/winforms/release-history/ui-for-winforms-q3-2014-(version-2014.3.1104)).