FrameworkContentElement.Initialized Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when this FrameworkContentElement is initialized. This coincides with cases where the value of the IsInitialized property changes from false
(or undefined) to true
.
public:
event EventHandler ^ Initialized;
public event EventHandler Initialized;
member this.Initialized : EventHandler
Public Custom Event Initialized As EventHandler
Event Type
Remarks
This event will be raised whenever the EndInit or OnInitialized methods are called. Calls to these methods could have been made by deliberate code, or by the Extensible Application Markup Language (XAML) loading process.