using System; using System.Globalization; using Xamarin.Forms; namespace comal.timesheets { public class StringToBooleanConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { return !String.IsNullOrWhiteSpace(value as String); } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { throw new NotImplementedException(); } } }