mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-23 11:01:26 -07:00
21 lines
623 B
C#
21 lines
623 B
C#
using System.Windows;
|
|
using System.Windows.Data;
|
|
|
|
namespace Bloxstrap.UI.Converters
|
|
{
|
|
public class InverseBooleanToVisibilityConverter : IValueConverter
|
|
{
|
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
if (value is bool boolValue)
|
|
return boolValue ? Visibility.Collapsed : Visibility.Visible;
|
|
|
|
return Visibility.Visible;
|
|
}
|
|
|
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |