Dreamine.UI.Wpf 1.0.1
Dreamine.UI.Wpf 사용자 인터페이스 기능과 구성 요소를 제공합니다.
로딩중...
검색중...
일치하는것 없음
BooleanToIconConverter.cs
이 파일의 문서화 페이지로 가기
1using System.Globalization;
2using System.Windows.Data;
3
5{
14 public class BooleanToIconConverter : IValueConverter
15 {
64 public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
65 {
66 if (value is bool isChecked)
67 {
68 return isChecked ? "CheckCircle" : "Circle";
69 }
70 return "Circle";
71 }
72
129 public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
130 {
131 throw new NotImplementedException();
132 }
133 }
134}
object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
object Convert(object value, Type targetType, object parameter, CultureInfo culture)