using System; using System.Globalization; using Xamarin.Forms; namespace comal.timesheets { public class IntToBooleanConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { return (value != null) && ((int)value != 0); } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { throw new NotImplementedException(); } } }