Dreamine.UI.Wpf 1.0.1
Dreamine.UI.Wpf 사용자 인터페이스 기능과 구성 요소를 제공합니다.
로딩중...
검색중...
일치하는것 없음
MultiParameterConverter.cs
이 파일의 문서화 페이지로 가기
1using System.Windows.Data;
2
4
13public class MultiParameterConverter : IMultiValueConverter
14{
71 public object Convert(object[] values, Type targetType, object parameter, System.Globalization.CultureInfo culture)
72 {
73 return Tuple.Create(values[0], values[1]);
74 }
75
132 public object[] ConvertBack(object value, Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture)
133 {
134 throw new NotImplementedException();
135 }
136}
object Convert(object[] values, Type targetType, object parameter, System.Globalization.CultureInfo culture)
object[] ConvertBack(object value, Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture)