Closed viveklpu2011 closed 3 years ago
I never tried but I think you can do it. The validatable
object already implements PropertyChange
.
I have tried but not working
Can you show a snippet?
var contact = await Contacts.PickContactAsync();
if (contact == null)
return;
customerViewModel.CustomerName.Value = contact?.DisplayName;
customerViewModel.CustomerPhone.Value = contact?.Phones[0]?.PhoneNumber;
Value is not showing in entry
Not able to set the entry value programatically , meanse i want to fill entry from view model from validation object