36 lines
997 B
C#
36 lines
997 B
C#
using System;
|
|
using System.Globalization;
|
|
using System.Windows;
|
|
using System.Windows.Data;
|
|
|
|
namespace BeWo.Converter
|
|
{
|
|
public class BoolVisibilityHiddenConverter : IValueConverter
|
|
{
|
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
if (value == null)
|
|
{
|
|
return Visibility.Visible;
|
|
}
|
|
|
|
bool lMode = true;
|
|
if (parameter is string)
|
|
{
|
|
bool.TryParse((string)parameter, out lMode);
|
|
}
|
|
|
|
if (lMode)
|
|
{
|
|
return (!(bool)value) ? Visibility.Hidden : Visibility.Visible;
|
|
}
|
|
|
|
return ((bool)value) ? Visibility.Hidden : Visibility.Visible;
|
|
}
|
|
|
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |