mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 18:38:27 +03:00
null converters
This commit is contained in:
parent
1f4bdb04ee
commit
865deaf401
2 changed files with 48 additions and 0 deletions
24
src/App/Utilities/IsNotNullConverter.cs
Normal file
24
src/App/Utilities/IsNotNullConverter.cs
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
using System;
|
||||||
|
using Xamarin.Forms;
|
||||||
|
|
||||||
|
namespace Bit.App.Utilities
|
||||||
|
{
|
||||||
|
public class IsNotNullConverter : IValueConverter
|
||||||
|
{
|
||||||
|
public object Convert(object value, Type targetType, object parameter,
|
||||||
|
System.Globalization.CultureInfo culture)
|
||||||
|
{
|
||||||
|
if(targetType == typeof(bool))
|
||||||
|
{
|
||||||
|
return value != null;
|
||||||
|
}
|
||||||
|
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();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
24
src/App/Utilities/IsNullConverter.cs
Normal file
24
src/App/Utilities/IsNullConverter.cs
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
using System;
|
||||||
|
using Xamarin.Forms;
|
||||||
|
|
||||||
|
namespace Bit.App.Utilities
|
||||||
|
{
|
||||||
|
public class IsNullConverter : IValueConverter
|
||||||
|
{
|
||||||
|
public object Convert(object value, Type targetType, object parameter,
|
||||||
|
System.Globalization.CultureInfo culture)
|
||||||
|
{
|
||||||
|
if(targetType == typeof(bool))
|
||||||
|
{
|
||||||
|
return value == null;
|
||||||
|
}
|
||||||
|
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();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue