Migration Guide to v2.11
Version 2.11 comes with some breaking-changes. You should follow this docuemnt to migrate your code to the new version properly.
You can see related PRs with breaking changes from here
Changes
- ValidationBindingis obsolete now. You should use- DataAnnotationsBehaviorinstead of- v:ValidationBinding.- Replace - v:ValidationBindingwith the regular- Bindingin XAML.
- Add - DataAnnotationsBehaviorto the- TextField.Behaviorsor any other control that you want to validate.- Before: - <material:TextField Text="{v:ValidationBinding Email}"/>
- After: - <material:TextField Text="{Binding Email}"> <material:TextField.Behaviors> <v:DataAnnotationsBehavior Binding="{Binding Email}" /> </material:TextField.Behaviors> </material:TextField>