A runtime form designer control

FormDesigner.DeserializeForm Event

Occurs after the form level properties have been deserialised during LoadLayout.

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

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

Event Data

The event handler receives an argument of type DeserializeComponentEventArgs containing data related to this event. The following DeserializeComponentEventArgs property provides information specific to this event.

PropertyDescription
Component Gets the component being deserialized.

Remarks

This event provides an opportunity to read form level custom properties from the serialized data.

See Also

FormDesigner Class | Viklele.Win.Designer Namespace