app-xamarintv/XamarinTV/Converters/InverseBoolConverter.cs

19 строки
484 B
C#

using System;
using System.Globalization;
using Xamarin.Forms;
namespace XamarinTV.Converters
{
public class InverseBoolConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
return !((bool)value);
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
return !((bool)value);
}
}
}