Dear all,
I have to perform some operation inside a chart ViewPortManger.BeginInvoke()
Is there a way to know when the BeginInvoke() method is completed or do I have to implement an custom event ?
regards
- sc sc asked 7 years ago
- You must login to post comments
Internally this is just wrapping Dispatcher.BeginInvoke. Your handler is the notification that its completed
ViewportManager.BeginInvoke(() =>
{
// Do something
// ..
// It's completed
});
It’s as simple as that
- Andrew Burnett-Thompson answered 7 years ago
- You must login to post comments
Please login first to submit.