I have the following property in my ViewModel:
public double? MinimalValue
{
get { return this._minimalValue; }
set { this.SetProperty(ref this._minimalValue, value); }
}
In XAML I try to bind RadNumericUpDown.Value property to abovementioned property in the following way:
<
telerik:RadNumericUpDown
Grid.Row
=
"0"
Grid.Column
=
"1"
Height
=
"30"
Margin
=
"0 30 10 0"
IsEditable
=
"True"
Value
=
"{Binding MinimalValue, Mode=TwoWay}"
/>
But the following error occurs: 'Value' local property is applied only to the types that are derivative from 'RadRangeBase'. So can I bind RadNumericUpDown.Value property to the property in my ViewModel or not?