FrameworkElement.EndInit Method

Definition

Indicates that the initialization process for the element is complete.

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

Implements

Exceptions

EndInit() was called without BeginInit() having previously been called on the element.

Remarks

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, Initialized is not raised and an exception is thrown instead.

Notes to Inheritors

Implement this method to provide special handling that should happen 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.

Applies to