Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TreeList.HideCustomizationForm Event

Fires immediately after the Customization Form has been closed.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v24.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

#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.HideCustomization 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