Families.AutoWriter 1.0.0.0
Families 콘텐츠를 반복 작업 없이 작성·등록하도록 돕는 자동화 작성 도구입니다.
로딩중...
검색중...
일치하는것 없음
EnumToBoolConverter.cs
이 파일의 문서화 페이지로 가기
1using System.Globalization;
2using System.Windows.Data;
3
5
14public sealed class EnumToBoolConverter : IValueConverter
15{
64 public object Convert(object value, Type targetType, object parameter, CultureInfo culture) =>
65 value?.ToString() == parameter?.ToString();
66
115 public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) =>
116 (bool)value ? Enum.Parse(targetType, parameter!.ToString()!) : Binding.DoNothing;
117}
object Convert(object value, Type targetType, object parameter, CultureInfo culture)
object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)