ISupportInitializeNotification Interface

Definition

Allows coordination of initialization for a component and its dependent properties.

public interface class ISupportInitializeNotification : System::ComponentModel::ISupportInitialize
public interface ISupportInitializeNotification : System.ComponentModel.ISupportInitialize
type ISupportInitializeNotification = interface
    interface ISupportInitialize
Public Interface ISupportInitializeNotification
Implements ISupportInitialize
Derived
Implements

Remarks

You should implement this interface when your component has initialization dependencies on other components that also implement the ISupportInitializeNotification interface. You can check to see if the dependent components have completed initialization by checking the IsInitialized property.

ISupportInitializeNotification is implemented by the BindingSource and ListControl types.

Properties

IsInitialized

Gets a value indicating whether the component is initialized.

Methods

BeginInit()

Signals the object that initialization is starting.

(Inherited from ISupportInitialize)
EndInit()

Signals the object that initialization is complete.

(Inherited from ISupportInitialize)

Events

Initialized

Occurs when initialization of the component is completed.

Applies to