Completed
Last Updated: 19 Jun 2017 12:59 by ADMIN
ADMIN
Dimitar
Created on: 10 May 2017 06:54
Category: Dock
Type: Bug Report
5
FIX. RadDock - floating windows cannot be resized.
To reproduce:
Use the approach here:  http://docs.telerik.com/devtools/winforms/dock/object-model/customizing-floating-windows

Workaround:
private void RadDock1_FloatingWindowCreated(object sender, Telerik.WinControls.UI.Docking.FloatingWindowEventArgs e)
{
    e.Window = new MyWindow(radDock1);
    e.Window.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;

}

class MyWindow : FloatingWindow
{
    public MyWindow(RadDock dock): base(dock)
    {

    }
    protected override CreateParams CreateParams
    {
        get
        {
            CreateParams cp = base.CreateParams;
            cp.Style |= NativeMethods.WS_THICKFRAME;
            return cp;
        }
    }
}
2 comments
ADMIN
Stefan
Posted on: 19 Jun 2017 12:32
Hi Kenneth,

the case is resolved in R2 2017 SP1, feel free to upgrade to it in order to take advantage of the fix.
Kenneth
Posted on: 10 May 2017 16:59
This feature was present until the latest update.  This feature is vital to our applications.  Please address it ASAP.