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

ValidationEventArgs Class

Provides data for the BaseEdit.Validate event.

Namespace: DevExpress.Xpf.Editors

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

NuGet Package: DevExpress.Wpf.Core

#Declaration

public class ValidationEventArgs :
    RoutedEventArgs

#Remarks

Handle the BaseEdit.Validate event to manually validate the editor (e.g. to limit the range of valid values, implement a custom a conditional validation mechanism, etc). If the value is invalid, set the ValidationEventArgs.IsValid property to false. The ValidationEventArgs.ErrorContent and ValidationEventArgs.ErrorType properties allow you to customize the error description.

To learn more, see Input Validation.

See Also