I derived a class from RadDiagram and attached device handlers to handle events. One event I want to handle is DiagramLayoutComplete, but the handler never seems to get called. Under what conditions should this event be raised?
In constructor:
Handler:
Any ideas?
In constructor:
DiagramLayoutComplete += OnDiagramLayoutComplete;
Handler:
private
void
OnDiagramLayoutComplete(
object
sender, RoutedEventArgs routedEventArgs)
{
// Code goes here
}
Any ideas?