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