Compartir a través de


ISupportInitializeNotification Interfaz

Definición

Permite la coordinación de 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

Nombre Description
IsInitialized

Obtiene un valor que indica si el componente se inicializa.

Métodos

Nombre Description
BeginInit()

Indica el objeto que se está iniciando la inicialización.

(Heredado de ISupportInitialize)
EndInit()

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

(Heredado de ISupportInitialize)

Eventos

Nombre Description
Initialized

Se produce cuando se completa la inicialización del componente.

Se aplica a