ISupportInitializeNotification Interfaz

Definición

Permite coordinar la inicialización de un componente y sus propiedades dependientes.

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

Comentarios

Debe implementar esta interfaz cuando el componente tenga dependencias de inicialización en otros componentes que también implementen la ISupportInitializeNotification interfaz. Puede comprobar si los componentes dependientes han completado la inicialización comprobando la IsInitialized propiedad .

ISupportInitializeNotification se implementa mediante los BindingSource tipos y ListControl .

Propiedades

IsInitialized

Obtiene un valor que indica si el componente está inicializado.

Métodos

BeginInit()

Indica al objeto que está comenzando la inicialización.

(Heredado de ISupportInitialize)
EndInit()

Indica al objeto que se ha completado la inicialización.

(Heredado de ISupportInitialize)

Eventos

Initialized

Se produce cuando finaliza la inicialización del componente.

Se aplica a