A runtime form designer control

FormDesigner.ComponentChanging Event

Occurs when a component is in the process of being changed.

[Visual Basic]
Public Event ComponentChanging As ComponentChangingEventHandler 
[C#]
public event ComponentChangingEventHandler ComponentChanging;
[C++]
public: __event ComponentChangingEventHandler* ComponentChanging;

[JScript] In JScript, you can use the events defined by a type, but you cannot define your own.

Remarks

This event occurs before the component is actually changed, and gives the designer a chance to abort the change or perform any pre-change processing. This event does not occur during form load and unload, because changes are expected at this time.

See Also

FormDesigner Class | Viklele.Win.Designer Namespace | ComponentChanged