AddLinkedForms Method
Adds, to the list provided, the set of forms that contains links to the specified control.
public virtual void AddLinkedForms(
System.Collections.IList linkedForms
)
Parameters
- linkedForms
The set of forms that contain links to the specified control.
Remarks
When a form contains navigation elements that activate another form without interaction from the server, it is considered a linked form. There are several criteria for a form to be considered linked. For example, if the following three conditions are met, Form B is considered to be linked to Form A:
- Form A contains a Link control with its destination as Form B.
- Form A does not contain an OnDeactivate event handler.
- Form B has no OnActivate event handler.
The base implementation does nothing, but other controls, such as the Link control, override the default implementation.
See Also
Applies to: MobileControl Class