Skip to main content
.NET 8.0+

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

ListViewFindPanelAttribute Class

Applied to business classes. Specifies whether a List View‘s GridListEditor and ASPxGridListEditor show the Find Panel (WinForms) and Search Panel (ASP.NET Web Forms) at runtime.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

public class ListViewFindPanelAttribute :
    Attribute

#Remarks

Apply this attribute to a business class as shown below if you need to enable the Find Panel and Search Panel in the GridListEditor‘s and ASPxGridListEditor‘s List Views. :

using DevExpress.ExpressApp;
using DevExpress.Persistent.Base;
using DevExpress.Persistent.BaseImpl;
// ...
[DefaultClassOptions, ListViewFindPanel]
  public class Contact : Person, IMapsMarker {
    // ...
}

When a business class has the ListViewFindPanelAttribute, the Find Panel (WinForms) and Search Panel (ASP.NET Web Forms), the List View’s GridListEditor and ASPxListEditor display the panels at runtime. Alternatively, you can use the DefaultListViewShowFindPanel or ShowFindPanel properties to activate the panels.

The Find Panel and the Search Panel allow the end-user to search and filter List Views.

WinForms

WinForms-ListViewFindPanelAttribute

ASP.NET Web Forms

ASP.NET-ListViewFindPanelAttribute

#Inheritance

Object
Attribute
ListViewFindPanelAttribute
See Also