C# 클래스 Dev2.CustomControls.Converters.MultipleBoolToEnabledConverter

상속: IMultiValueConverter
파일 보기 프로젝트 열기: Warewolf-ESB/Warewolf 1 사용 예제들

공개 메소드들

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

Converts source values to a value for the binding target. The data binding engine calls this method when it propagates the values from source bindings to the binding target.

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

Converts a binding target value to the source binding values.

메소드 상세

Convert() 공개 메소드

Converts source values to a value for the binding target. The data binding engine calls this method when it propagates the values from source bindings to the binding target.
public Convert ( object values, Type targetType, object parameter, CultureInfo culture ) : object
values object /// The array of values that the source bindings in the /// produces. The value /// indicates that the source binding has no value to /// provide for conversion. ///
targetType System.Type The type of the binding target property.
parameter object The converter parameter to use.
culture System.Globalization.CultureInfo The culture to use in the converter.
리턴 object

ConvertBack() 공개 메소드

Converts a binding target value to the source binding values.
public ConvertBack ( object value, Type targetTypes, object parameter, CultureInfo culture ) : object[]
value object The value that the binding target produces.
targetTypes System.Type /// The array of types to convert to. The array length indicates the number and types of values /// that are suggested for the method to return. ///
parameter object The converter parameter to use.
culture System.Globalization.CultureInfo The culture to use in the converter.
리턴 object[]