FrameworkContentElement.OnInitialized(EventArgs) Method
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.
Raises the Initialized event. This method is invoked whenever IsInitialized is set to true
.
protected:
virtual void OnInitialized(EventArgs ^ e);
protected virtual void OnInitialized (EventArgs e);
abstract member OnInitialized : EventArgs -> unit
override this.OnInitialized : EventArgs -> unit
Protected Overridable Sub OnInitialized (e As EventArgs)
Parameters
Event data for the event.
Remarks
The default implementation of this virtual method raises the event as described earlier in this topic. Overrides should call base() to preserve this behavior.
Note that the IsInitialized property is read-only. Therefore, you cannot set it to force initialization behavior that way. Initialization setting is intended to be done only by the Windows Presentation Foundation (WPF) framework.