This question is locked. New answers and comments are not allowed.
Hello,
For my demo application I am trying to implement Drag and Drop functionality. But if I am using Silverlight Controls I can not use the following line of code
(this line of code is from the treeview example DragAndDrop towards the textbox, From the Silverlight Q2 silverlight examples)
First of because the Silverlight control has only 1 AddHandler methode wich is the following. Source
So I added true to it.
Argument 1: cannot convert from 'Telerik.Windows.RoutedEvent' to 'System.Windows.RoutedEvent'
Are the examples not right? Or am I doing something terably wrong because I don't have those methods
For my demo application I am trying to implement Drag and Drop functionality. But if I am using Silverlight Controls I can not use the following line of code
(this line of code is from the treeview example DragAndDrop towards the textbox, From the Silverlight Q2 silverlight examples)
this
.target.AddHandler(RadDragAndDropManager.DropQueryEvent,
new EventHandler<DragDropQueryEventArgs>(TextBox_OnDropQuery));
First of because the Silverlight control has only 1 AddHandler methode wich is the following. Source
So I added true to it.
Argument 1: cannot convert from 'Telerik.Windows.RoutedEvent' to 'System.Windows.RoutedEvent'
Are the examples not right? Or am I doing something terably wrong because I don't have those methods