From time to time, I encounter problems with View -> ViewModel with binding errors for Xamarin.Forms on iOS.
For example, I had a tag binding to a double property in the ViewModel, and nothing happened until I added this line format:
myLabel.SetBinding<MyViewModel> (Label.TextProperty, vm => vm.MyDoubleProperty, stringFormat: "{0:0.0}");
It would be much easier if the framework told me that an error occurred.
And this is my question: where can I see exception / warning bindings in Xamarin.Forms?
source
share