FrameworkContentElement.EndInit Method

Definition

Called immediately after an element is initialized.

public:
 virtual void EndInit();
public virtual void EndInit ();
abstract member EndInit : unit -> unit
override this.EndInit : unit -> unit
Public Overridable Sub EndInit ()

Implements

Remarks

Implement this method to provide special handling that should occur when your element is initialized during the element loading process.

Your implementation should call the base implementation, because the base (default) implementation sets some internal flags to keep track of initialization.

If BeginInit was previously called, the base implementation will raise the Initialized event. Otherwise, if BeginInit was not called or it could not be determined whether BeginInit was called, the event is not raised.

Applies to