C# 클래스 LiveCharts.Uwp.Components.MultiBinding.MultiValueConverterBase

An IValueConverter abstract implementation to be used with the MultiBindingBehavior.
상속: Windows.UI.Xaml.DependencyObject, IValueConverter
파일 보기 프로젝트 열기: beto-rodriguez/Live-Charts

공개 메소드들

메소드 설명
Convert ( object values, Type targetType, object parameter, CultureInfo culture ) : object

Modifies the source data before passing it to the target for display in the UI.

ConvertBack ( object value, Type targetType, object parameter, CultureInfo culture ) : object[]

Modifies the target data before passing it to the source object. This method is called only in F:System.Windows.Data.BindingMode.TwoWay bindings.

비공개 메소드들

메소드 설명
IValueConverter ( object value, Type targetType, object parameter, string language ) : object

메소드 상세

Convert() 공개 추상적인 메소드

Modifies the source data before passing it to the target for display in the UI.
public abstract Convert ( object values, Type targetType, object parameter, CultureInfo culture ) : object
values object The source data being passed to the target.
targetType System.Type The of data expected by the target dependency property.
parameter object An optional parameter to be used in the converter logic.
culture System.Globalization.CultureInfo The culture of the conversion.
리턴 object

ConvertBack() 공개 추상적인 메소드

Modifies the target data before passing it to the source object. This method is called only in F:System.Windows.Data.BindingMode.TwoWay bindings.
public abstract ConvertBack ( object value, Type targetType, object parameter, CultureInfo culture ) : object[]
value object The target data being passed to the source.
targetType System.Type The of data expected by the source object.
parameter object An optional parameter to be used in the converter logic.
culture System.Globalization.CultureInfo The culture of the conversion.
리턴 object[]