The Xamarin Community Toolkit is a collection of Animations, Behaviors, Converters, and Effects for mobile development with Xamarin.Forms. It simplifies and demonstrates common developer tasks building iOS, Android, and UWP apps with Xamarin.Forms.
MIT License
1.58k
stars
471
forks
source link
fix: return original value on TextCaseConverter.ConvertBack #1956
TextCaseConverter.ConvertBack always throws a NotImplementedException which makes it unusable when two-way-binding. Now it will return value unchanged instead of an exception.
Description of Bug
TextCaseConverter.ConvertBack
always throws aNotImplementedException
which makes it unusable when two-way-binding. Now it will returnvalue
unchanged instead of an exception.Issues Fixed