Back to Devexpress

FilterControl.ShowActionButtonMode Property

windowsforms-devexpress-dot-xtraeditors-dot-filtercontrol-7679c147.md

latest2.2 KB
Original Source

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.v25.2.dll

NuGet Package : DevExpress.Win.Navigation

Declaration

csharp
[DefaultValue(ShowActionButtonMode.Default)]
[DXCategory("Behavior")]
public ShowActionButtonMode ShowActionButtonMode { get; set; }
vb
<DXCategory("Behavior")>
<DefaultValue(ShowActionButtonMode.Default)>
Public Property ShowActionButtonMode As ShowActionButtonMode

Property Value

TypeDefaultDescription
DevExpress.XtraEditors.ShowActionButtonModeDefault

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:

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

The image below shows the result:

See Also

FilterControl Class

FilterControl Members

DevExpress.XtraEditors Namespace