Nate Widmer
Results
3
comments of
Nate Widmer
trafficstars
OnPropertyChanged is called from any thread so that the main thread can update the UI. In Xamarin forms the equivalent command to NotifyCanExecuteChanged is RaiseCanExecuteChanged which can be called from...
If this call is not going to be changed to be safely called from a thread that is not the UI thread, I think it would be good to put...
Ok, that makes sense. I didn't realize that the framework needed to handle that. Thanks for the responses!