mirror of
https://github.com/bitwarden/android.git
synced 2025-01-08 01:07:40 +03:00
25 lines
710 B
C#
25 lines
710 B
C#
|
using System;
|
|||
|
using Xamarin.Forms;
|
|||
|
|
|||
|
namespace Bit.App.Utilities
|
|||
|
{
|
|||
|
public class InverseBoolConverter : IValueConverter
|
|||
|
{
|
|||
|
public object Convert(object value, Type targetType, object parameter,
|
|||
|
System.Globalization.CultureInfo culture)
|
|||
|
{
|
|||
|
if(targetType == typeof(bool))
|
|||
|
{
|
|||
|
return !((bool?)value).GetValueOrDefault();
|
|||
|
}
|
|||
|
throw new InvalidOperationException("The target must be a boolean.");
|
|||
|
}
|
|||
|
|
|||
|
public object ConvertBack(object value, Type targetType, object parameter,
|
|||
|
System.Globalization.CultureInfo culture)
|
|||
|
{
|
|||
|
throw new NotSupportedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|