TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Ganeshkumar Lingappan
NA
112
31.1k
DropEvent is not firing
Jun 23 2016 1:18 AM
I have used the CustomCanvas panel inside the ScrollViewer. i have tried to show the drop event to the CustomCanvas panel. but it doesn't gets fired.
Codes:
Xaml:
<ScrollViewer x:Name="lvw_Viewer" Height="160" IsTabStop="False" Margin="10" Grid.Column="1" Grid.Row="0" Visibility="Visible" >
<converter:ScrollableCanvas Grid.Row="0" x:Name="lvw_Canvas" />
</ScrollViewer>
Code-Behind
this.lvw_Viewer.AllowDrop = true;
this.lvw_Canvas.AllowDrop = true;
this.lvw_Canvas.Drop += lvw_Canvas_Drop;
private void lvw_Canvas_Drop(object sender, DragEventArgs e)
{
}
Please let me know if you have any answers.
Regards,
Ganeshkumar
Reply
Answers (
1
)
TreeView - Drag and Drop
Expression Blend