To reproduce:
- Add a panel to a form, dock it to fill the entire space.
- Add RadDock to it, set its Dock property to fill.
- Add a document window with a grid to it (the grid should fill the entire space).
- Start the application and maximize the form.
Workaround:
- Remove the panel or use RadPanel instead.
- Handle the SizeChanged event
private void RadForm1_SizeChanged(object sender, EventArgs e)
{
var window = this.radDock1.ActiveWindow;
this.radDock1.ActiveWindow = null;
this.radDock1.ActiveWindow = window;
}