Unplanned
Last Updated: 29 Mar 2016 12:55 by ADMIN
ADMIN
Stefan
Created on: 15 Dec 2011 09:14
Category: Form
Type: Bug Report
5
FIX. RadForm - MDI children are not correctly placed on the form under Windows XP
1. Create RadRibbonForm and add code to start maximized 
2. Add status strip with some items on the ribbon form 
3. in the form constructor create a MDI child form, set it to start maximized and show it 
4. The result is that there is gap between the child form and the status strip

Workaround:
protected override void OnShown(EventArgs e)
{
    base.OnShown(e);
 
    this.WindowState = FormWindowState.Minimized;
    this.WindowState = FormWindowState.Maximized;
}
0 comments