I am trying to use MVVM two way binding on SfNumericUpDown in xamarin.ios. But it is not working
Below is the sample code
public Binding<int, object> purchasedQtyBinding = this.SetBinding(
() => _materialDetails.QuantityPurchased,
() => txtPurchasedQuantity.Value,
BindingMode.TwoWay);
And my model property is as below:
private int quantityPurchased;
public int QuantityPurchased
{
get
{
return quantityPurchased;
}
set
{
Set(ref quantityPurchased, value);
}
}