I have been creating and adding RadDiagramShape to the RadDiagram control at run time.
I wan to detect/capture the event whenever the shape is moved(dragged to change its position) on the RadDiagram control.
How can I do that?
I tried to do something like
also tried
Didn't work.
Help
I wan to detect/capture the event whenever the shape is moved(dragged to change its position) on the RadDiagram control.
How can I do that?
I tried to do something like
radShape.DragEnter += OnShapePositionChanged;
also tried
radShape.AddHandler(RadDragAndDropManager.DragQueryEvent,
new
EventHandler<DragDropQueryEventArgs>(OnShapePositionChanged));
Didn't work.
Help