Event handler for form and component deserialization events.
[Visual Basic] Public Delegate Function Sub DeserializeComponentEventHandler( _ ByVal sender As Object, _ ByVal e As DeserializeComponentEventArgs _ ) [C#] public delegate void DeserializeComponentEventHandler( object sender, DeserializeComponentEventArgs e ) [C++] public __gc __delegate void DeserializeComponentEventHandler( Object* sender, DeserializeComponentEventArgs* e )
[JScript] In JScript, you can use the delegates defined by a type, but you cannot define your own.
When you create a DeserializeComponentEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event.
The event handler is called during form designer de-serialization (i.e. during form layout loading or paste operations).
Namespace: Viklele.Win.Designer
Assembly: Viklele.Win.FormDesigner (in Viklele.Win.FormDesigner.dll)
Viklele.Win.Designer Namespace | SerializeComponentEventHandler