ControlEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.1.0.0)
Represents the method that will handle the ControlAdded and ControlRemoved events of the Control class.
- C#
- VB.NET
public delegate void ControlEventHandler(Object sender, ControlEventArgs e)
Public Delegate Sub ControlEventHandler(ByVal sender As [Object], ByVal e As ControlEventArgs)
Parameters
| Name | Type | Description |
|---|---|---|
| sender | Object | The source of the event. |
| e | ControlEventArgs | A ControlEventArgs that contains the event data. |
Fired By
| Name | Description |
|---|---|
| Control.ControlAdded | Fired when a new control is added to the ControlCollection. |
| Control.ControlRemoved | Fired when a control is removed from the ControlCollection. |
| Form.MdiChildAdded | Fired when a multiple-document interface (MDI) child form is added to the mdi parent. |
| Form.MdiChildRemoved | Fired when a multiple-document interface (MDI) child form is removed from the mdi parent. |