Skip to main content
A newer version of this page is available. .

TreeList.HideCustomizationForm Event

Fires immediately after the Customization Form has been closed.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v19.1.dll

Declaration

[DXCategory("Behavior")]
public event EventHandler HideCustomizationForm

Event Data

The HideCustomizationForm event's data class is EventArgs.

Remarks

You can hide the Customization Form by calling the TreeList.DestroyCustomization method. End-users can also close the form manually. In both cases, the HideCustomizationForm event is raised. Write a handler for this event to perform specific actions in response to closing the Customization Form. This can be used, for instance, to hide instructions on using the Customization Form, that were displayed when the Customization Form first appeared. Use the TreeList.ShowCustomizationForm event to perform specific actions when it becomes visible.

See Also