Completed
Last Updated: 04 Jun 2019 11:04 by ADMIN
ADMIN
Dimitar
Created on: 19 May 2016 12:22
Category: Dock
Type: Bug Report
1
FIX. RadDock - the controls in the tool windows are not visible if the dock is inside the page view page and the form is minimized and then restored.
Use the attached project to reproduce.

Workaround:
private void RadForm1_SizeChanged(object sender, EventArgs e)
{
    toolWindow1.EnsureVisible();
}
Attached Files:
3 comments
ADMIN
Dimitar
Posted on: 04 Jun 2019 11:04
Hello,

Issue was fixed in Telerik UI for WinForms R2 2016 SP1 along with the following fix:
FIX. RadDock - when the dock is placed in a panel the underlying controls are not sized properly

Regards,
Dimitar
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
ADMIN
Stefan
Posted on: 06 Jun 2016 10:14
Thank you for your input Mieke.
Mieke
Posted on: 24 May 2016 09:50
Global solution, addhandler to the Form_Sizechange ->

And use this :

  For Each Obj As Telerik.WinControls.UI.Docking.DockWindow In Sender.RadDock1.DockWindows
                            Obj.EnsureVisible()
                        Next