mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
31 lines
818 B
C#
31 lines
818 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Globalization;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using System.Windows;
|
|||
|
using System.Windows.Data;
|
|||
|
|
|||
|
namespace Wox.Converters
|
|||
|
{
|
|||
|
class VisibilityConverter : ConvertorBase<VisibilityConverter>
|
|||
|
{
|
|||
|
public override object Convert(object value, Type targetType, object parameter, CultureInfo culture)
|
|||
|
{
|
|||
|
if (value == null || value == DependencyProperty.UnsetValue)
|
|||
|
{
|
|||
|
return null;
|
|||
|
}
|
|||
|
|
|||
|
return bool.Parse(value.ToString()) ? Visibility.Visible : Visibility.Collapsed;
|
|||
|
}
|
|||
|
|
|||
|
public override object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
|
|||
|
{
|
|||
|
return null;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|