ISupportInitializeNotification Interface (System.ComponentModel) (original) (raw)
- Reference
Definition
Namespace:
Assemblies:
netstandard.dll, System.ComponentModel.TypeConverter.dll
Assembly:
System.ComponentModel.TypeConverter.dll
Assembly:
System.dll
Assembly:
netstandard.dll
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.
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
Events
Initialized | Occurs when initialization of the component is completed. |
---|