FrameworkContentElement.EndInit 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.
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.