mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 05:40:11 +00:00
39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
using System;
|
|
using System.Globalization;
|
|
using System.Windows;
|
|
using System.Windows.Data;
|
|
|
|
namespace MSFSPopoutPanelManager.Shared
|
|
{
|
|
[ValueConversion(typeof(bool), typeof(Visibility))]
|
|
public sealed class BoolToVisibilityConverter : IValueConverter
|
|
{
|
|
public Visibility TrueValue { get; set; }
|
|
public Visibility FalseValue { get; set; }
|
|
|
|
public BoolToVisibilityConverter()
|
|
{
|
|
// set defaults
|
|
TrueValue = Visibility.Visible;
|
|
FalseValue = Visibility.Collapsed;
|
|
}
|
|
|
|
public object Convert(object value, Type targetType,
|
|
object parameter, CultureInfo culture)
|
|
{
|
|
if (!(value is bool))
|
|
return null;
|
|
return (bool)value ? TrueValue : FalseValue;
|
|
}
|
|
|
|
public object ConvertBack(object value, Type targetType,
|
|
object parameter, CultureInfo culture)
|
|
{
|
|
if (Equals(value, TrueValue))
|
|
return true;
|
|
if (Equals(value, FalseValue))
|
|
return false;
|
|
return null;
|
|
}
|
|
}
|
|
}
|