29 lines
995 B
C#
29 lines
995 B
C#
using System;
|
||
using System.Globalization;
|
||
using System.Windows;
|
||
using System.Windows.Data;
|
||
|
||
namespace DMS.WPF.Converters
|
||
{
|
||
/// <summary>
|
||
/// 枚举到可见性转换器。当绑定的枚举值等于 ConverterParameter 时,返回 Visible,否则返回 Collapsed。
|
||
/// </summary>
|
||
public class EnumToVisibilityConverter : IValueConverter
|
||
{
|
||
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
|
||
{
|
||
if (value == null || parameter == null)
|
||
return Visibility.Collapsed;
|
||
|
||
string enumValue = value.ToString();
|
||
string targetValue = parameter.ToString();
|
||
|
||
return enumValue.Equals(targetValue, StringComparison.OrdinalIgnoreCase) ? Visibility.Visible : Visibility.Collapsed;
|
||
}
|
||
|
||
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
|
||
{
|
||
throw new NotImplementedException();
|
||
}
|
||
}
|
||
} |