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

AutoSuggestEdit.TextChanged Event

Occurs when the editor’s text has been changed due to edit value change, selecting any suggestion from the popup, or entering a custom text in editor’s text box.

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v24.2.dll

NuGet Package: DevExpress.Wpf.Core

#Declaration

#Event Data

The TextChanged event's data class is AutoSuggestEditTextChangedEventArgs. The following properties provide information specific to this event:

Property Description
Reason Returns the reason of changing the editor’s text.
Text Gets a new text displayed within the editor’s text box.

#Remarks

Handle the TextChanged event to get the new text, and to get the reason for the text changing.

Use the event arguments’ AutoSuggestEditTextChangedEventArgs.Text property to get the new text, entered in editor’s text box.

To get the reason for the text changing, use the AutoSuggestEditTextChangedEventArgs.Reason property.

See Also