We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Will Panning and Scrolling events be included into October release?

Will Panning and Scrolling events be included into October release?

like Pan_Changes, Scroll_Changed


3 Replies

NA Nikhil A Syncfusion Team September 23, 2009 09:53 AM UTC

Hi Pavel,

The panning and scrolling events have not been implemented yet and therefore they wont be available in Volume 4 release. We have added these features to our feature queue and we will implement them in our future releases. The implementation will also depend on other factors like code complexity, code compatibility and product design.

Please let us know if there are any concerns.

Regards,
Nikhil
Syncfusion WPF team



PV Pavel Vykhryst September 23, 2009 10:30 AM UTC

Could you suggest some temporal workarround for this?

Like to put some 1 pixel node and play with checking of screen position periodically or handle some win32 events or reflection usage?


NA Nikhil A Syncfusion Team September 23, 2009 11:03 AM UTC

Hi Pavel,

As we have already mentioned in our response in another forum, you can use the following code to get the screen coordinates of the node . The NodeDrag event will fire each time the node is dragged and so you can periodically check the screen coordinates.


diagramView.NodeDragEnd += new NodeEventHandler(diagramView_NodeDragEnd);

void diagramView_NodeDragEnd(object sender, NodeRoutedEventArgs evtArgs)
{
Node n = evtArgs.Node;
Point screenpoint = diagramView.PointToScreen(new Point(n.OffsetX, n.OffsetY));
}

Please let us know if there are any concerns.

Regards,
Nikhil
Syncfusion WPF team

Loader.
Live Chat Icon For mobile
Up arrow icon