FrameworkContentElement.OnInitialized(EventArgs) Method

Definition

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

e
EventArgs

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.

Applies to