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

ToolboxOptionsView.ShowSearchPanel Property

Gets or sets whether the ToolboxControl displays the search box that allows an end-user to filter the items according to a custom criterion.

Namespace: DevExpress.XtraToolbox

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DefaultValue(true)]
public bool ShowSearchPanel { get; set; }

#Property Value

Type Default Description
Boolean true

true if the ToolboxControl displays the search box; otherwise, false.

#Property Paths

You can access this nested property as listed below:

Object Type Path to ShowSearchPanel
ToolboxControl
.OptionsView .ShowSearchPanel

#Remarks

By default, the ToolboxControl displays the search box. The search box allows an end-user to filter the ToolboxControl items according to a custom criterion. In the figure below, items are filtered according to the “3-D” search request.

ToolboxControl_Search

When the text in the search box is changed, the ToolboxControl.SearchTextChanged event fires.

Set the ShowSearchPanel property to false to hide the search box.

In code, you can filter the ToolboxControl items using the ToolboxControl.Search method.

See Also