Hello Alexy,
Yes, the reason for this behavior is that the ChildWindow is in a Popup and popups open in a separate visual tree than the rest of the application. There is no way to enumerate or ask for the currently opened popups and therefore the DragDrop does not know about them.
The opened windows need to be manually registered. This has to be done for each DragDrop operation. A good place to do this is the DragInfo handler. Add a DragInfo handler to the root of your application and check whether the status (e.Options.Status) is DragInProgress. Then add all open windows to the e.Options.ParticipatingVisualRoots collection. The windows will be searched for drop targets in order of appearance in the collection.
If you want to have just one handler to deal with this, it is best to register it with the AddHandler method, specifying that it should handle handled events as well, the syntax for this is:
AddHandler is an attached method and you need this using to see it:
using Telerik.Windows;
Does this work for you?
All the best,
Miroslav
the Telerik team