Skip to main content

RatingControl.ValueChanged Event

Occurs after the RatingControl‘s value has been changed.

Namespace: DevExpress.Xpf.Editors

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

NuGet Package: DevExpress.Wpf.Core

Declaration

public event ValueChangedEventHandler<double> ValueChanged

Event Data

The ValueChanged event's data class is ValueChangedEventArgs<Double>. The following properties provide information specific to this event:

Property Description
NewValue Gets an object that represents the new value of a specific property.
OldValue Gets an object that represents the old value of a specific property.

Remarks

The event parameter has two properties, allowing you to obtain the RatingControl‘s current (NewValue) and previous (OldValue) values.

See Also