GoXam for WPF v3
TemplateApplied Event
Northwoods.GoXam Namespace > Diagram Class : TemplateApplied Event
This event is raised by OnApplyTemplate, after the diagram's Panel has been created, to allow you to establish event handlers or bindings on the DiagramPanel.
Syntax
[Category("Diagram")]
public event EventHandler<DiagramEventArgs> TemplateApplied
Event Data

The event handler receives an argument of type DiagramEventArgs containing data related to this event. The following DiagramEventArgs properties provide information specific to this event.

PropertyDescription
Gets or sets the specific FrameworkElement that was acted upon and that is the subject of the event.  
(Inherited from System.Windows.RoutedEventArgs)
(Inherited from System.Windows.RoutedEventArgs)
Gets or sets the Part that was acted upon and that is the subject of the event.  
(Inherited from System.Windows.RoutedEventArgs)
(Inherited from System.Windows.RoutedEventArgs)
Remarks
The Loaded event may occur repeatedly as the Diagram is removed and then re-inserted into the visual tree. The InitialLayoutCompleted event may occur repeatedly as the diagram's model is replaced.
See Also