Skip to main content
All docs
V24.2

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

FilterControl.ShowActionButtonMode Property

Gets or sets a value that specifies whether the Filter Control always displays action buttons (for example, add or remove a condition) or displays the buttons on hover.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DefaultValue(ShowActionButtonMode.Default)]
[DXCategory("Behavior")]
public ShowActionButtonMode ShowActionButtonMode { get; set; }

#Property Value

Type Default Description
DevExpress.XtraEditors.ShowActionButtonMode Default

A ShowActionButtonMode enumeration value that specifies when the Filter Control displays action buttons.

#Remarks

The Filter Control displays action buttons on hover.

The following example sets the ShowActionButtonMode property to always display action buttons:

filterControl1.ShowActionButtonMode = DevExpress.XtraEditors.ShowActionButtonMode.Always;

The image below shows the result:

Display Action Buttons - WinForms Filter Editor

See Also