Method | Description | |
---|---|---|
Convert ( object value, |
Modifies the source data before passing it to the target for display in the UI.
|
|
ConvertBack ( object value, |
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 Convert ( object value, |
||
value | object | The value produced by the binding source. |
targetType | The type of the binding target property. | |
parameter | object | The converter parameter to use. |
culture | System.String | The culture to use in the converter. |
return | object |
public ConvertBack ( object value, |
||
value | object | The value that is produced by the binding target. |
targetType | The type to convert to. | |
parameter | object | The converter parameter to use. |
culture | System.String | The culture to use in the converter. |
return | object |