C# 클래스 MassEffect.Windows.Markup.TypeConverter

상속: IValueConverter
파일 보기 프로젝트 열기: ME3Explorer/ME3Explorer

Private Properties

프로퍼티 타입 설명
DoConversion object

공개 메소드들

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

Attempts to convert the specified value.

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

Attempts to convert the specified value back.

TypeConverter ( ) : System

Initializes a new instance of the TypeConverter class.

TypeConverter ( Type sourceType, Type targetType ) : System

Initializes a new instance of the TypeConverter class with the specified source and target types.

비공개 메소드들

메소드 설명
DoConversion ( object value, Type toType, CultureInfo culture ) : object

메소드 상세

Convert() 공개 메소드

Attempts to convert the specified value.
public Convert ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object /// The value to convert. ///
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() 공개 메소드

Attempts to convert the specified value back.
public ConvertBack ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object /// The value to convert. ///
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

TypeConverter() 공개 메소드

Initializes a new instance of the TypeConverter class.
public TypeConverter ( ) : System
리턴 System

TypeConverter() 공개 메소드

Initializes a new instance of the TypeConverter class with the specified source and target types.
public TypeConverter ( Type sourceType, Type targetType ) : System
sourceType System.Type /// The source type (see ). ///
targetType System.Type /// The target type (see ). ///
리턴 System