In a win form I have placed a panel control (the parent), on DragDrop event I am creating another panel inside this parent (the child). Now when I drag any thing on to the child control the event is fired only on the parent panel.
How do I pass on the event to the child control?
I found the issue here. The DragEnter event on the parent was consuming the DragEffect irrespective of type of object being dropped. Changing the method to consume only specific objects allowed the event to propagate. Got the hint from here.