Method | Description | |
---|---|---|
Convert ( object value, |
||
Convert ( object value, |
Modifies the source data before passing it to the target for display in the UI.
|
|
ConvertBack ( object value, |
||
ConvertBack ( object value, |
Modifies the target data before passing it to the source object. This method is called only in TwoWay bindings.
|
public Convert ( object value, |
||
value | object | |
targetType | ||
parameter | object | |
culture | ||
return | object |
public Convert ( object value, |
||
value | object | The source data being passed to the target. |
targetType | The type of the target property, as a type reference (System.Type for Microsoft .NET, a TypeName helper struct for Visual C++ component extensions (C++/CX)). | |
parameter | object | An optional parameter to be used in the converter logic. |
language | string | The language of the conversion. |
return | object |
public ConvertBack ( object value, |
||
value | object | |
targetType | ||
parameter | object | |
culture | ||
return | object |
public ConvertBack ( object value, |
||
value | object | The target data being passed to the source. |
targetType | The type of the target property, as a type reference (System.Type for Microsoft .NET, a TypeName helper struct for Visual C++ component extensions (C++/CX)). | |
parameter | object | An optional parameter to be used in the converter logic. |
language | string | The language of the conversion. |
return | object |