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

WindowsFormsSettings.FindPanelCondition Property

Specifies the default comparison operator (Contains, Equals, StartWith, etc.) a control uses to search for words entered in a Find Panel. This setting is applied to all controls that have their OptionsFind.Condition properties set to Default.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.Utils.v24.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

#Declaration

public static FilterCondition FindPanelCondition { get; set; }

#Property Value

Type Description
FilterCondition

The default comparison operator.

Available values:

Name Description
Contains

Specifies the Contains comparison operation.

StartsWith

Specifies the StartsWith comparison operation.

Like

Specifies the Like comparison operation.

Default

Specifies the default comparison operation.

Equals

Specifies the Equals comparison operation.

#Remarks

A control’s Find Panel searches for an entered word using one of comparison operators: Contains, Equals, StartWith, etc. The WindowsFormsSettings.FindPanelCondition property specifies the default comparison operator for all controls that have their OptionsFind.Condition properties set to Default.

When the WindowsFormsSettings.FindPanelCondition property is set to Default, the actual default mode is Contains.

You can override the WindowsFormsSettings.FindPanelCondition setting for individual controls with the following properties:

See Also