Unplanned
Last Updated: 28 Jul 2020 12:32 by ADMIN
대호
Created on: 28 Jul 2020 12:14
Category: Dock
Type: Bug Report
0
RadDock: DockStateChanged event does not trigger when docking a window to a floating window

To reproduce:

1. Create a floating window

2. Try to drop another window into the floating window

3. The window is successfully docked into the floating window, but DockStateChanged event does not fire.

1 comment
ADMIN
Nadya | Tech Support Engineer
Posted on: 28 Jul 2020 12:32

Hello,

To workaround this use PropertyChanged event:

private void ToolWindow2_PropertyChanged(object sender, PropertyChangedEventArgs e)
{
    if (e.PropertyName=="DockState")
    {
        Console.WriteLine(e.PropertyName);
    }
}

Let me know if you have other questions.

Regards,
Nadya
Progress Telerik

Attached Files: