Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Created December 30, 2019 11:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icebeam7/31c382ca15e00461b63624a4a26842aa to your computer and use it in GitHub Desktop.
Save icebeam7/31c382ca15e00461b63624a4a26842aa to your computer and use it in GitHub Desktop.
eliteKit: InverseBoolConverter.cs
using System;
using Xamarin.Forms;
namespace DemoEliteKit.Converters
{
public class InverseBoolConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return !(bool)value;
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return !(bool)value;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment