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.
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