Click here to Skip to main content
15,891,033 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello codeproject!

In my project in WPF, I have implemented a drag drop functionality.
Where items can be dropped on a canvas. I can add a custom adorner nodes of type control to the SELECTED ITEM on the canvas at RUNTIME. However, when i tried to walk down
to the nodes' parent tree at previewmouseleftbuttondown. I can no longer retrieve the canvas parent. It takes shorcut to a type grid,below is the xaml.

Grid>
ScrollViewer Name="CanvasScrollViewer"
    Background="Transparent"
    HorizontalScrollBarVisibility="Auto"
    VerticalScrollBarVisibility="Auto">

n:MyCanvas x:Name="TheCanvas"
     MinHeight="800"
     MinWidth="1000"
     AllowDrop="True"
     Background="White">
/n:MyCanvas>
/ScrollViewer>
/Grid>

Thanks in advanced! :)
Posted
Updated 9-Jan-13 7:17am
v3
Comments
Thomas Duwe 17-Jan-13 3:51am    
Please show the PreviewMouseLeftButtonDown code

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900