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

FilterPopupListBoxEventArgs Class

Provides data for the ColumnView.ShowFilterPopupListBox event.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v24.2.dll

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

#Declaration

public class FilterPopupListBoxEventArgs :
    FilterPopupEventArgs

#Remarks

The ColumnView.ShowFilterPopupListBox event fires before displaying a column’s filter dropdown list. It enables you to add your own items to the dropdown and delete existing items. Thus, the FilterPopupListBoxEventArgs class declares the FilterPopupListBoxEventArgs.ComboBox property that allows you to access the items list. You can also identify the column whose dropdown list is about to be displayed. Use the Column property for this purpose.

FilterPopupListBoxEventArgs objects are automatically created and passed to ColumnView.ShowFilterPopupListBox event handlers.

#Inheritance

Object
EventArgs
FilterPopupEventArgs
FilterPopupListBoxEventArgs
See Also