New to Telerik UI for WPFStart a free 30-day trial

Contains information about the ValueChanged event.

Definition

Namespace:Telerik.Windows.Controls.Calculator

Assembly:Telerik.Windows.Controls.Input.dll

Syntax:

C#
public class ValueChangedEventArgs : EventArgs

Inheritance: objectEventArgsValueChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the ValueChangedEventArgs class.

C#
public ValueChangedEventArgs(decimal oldValue, decimal newValue)
Parameters:oldValuedecimal

The old value.

newValuedecimal

The new value.

Properties

Gets the new value.

C#
public decimal NewValue { get; }
Property Value:

The new value.

Gets the old value.

C#
public decimal OldValue { get; }
Property Value:

The old value.