Method | Description | |
---|---|---|
Convert ( object value, Type targetType, object parameter, |
||
Convert ( object value, Type targetType, object parameter, string culture ) : object |
Converts a boolean value into a Visibility enumeration value.
|
|
ConvertBack ( object value, Type targetType, object parameter, |
||
ConvertBack ( object value, Type targetType, object parameter, string culture ) : object |
Converts a Visibility enumeration value into a boolean value.
|
Method | Description | |
---|---|---|
IsInvertParameterSet ( object parameter ) : bool |
public Convert ( object value, Type targetType, object parameter, |
||
value | object | |
targetType | Type | |
parameter | object | |
culture | ||
return | object |
public Convert ( object value, Type targetType, object parameter, string culture ) : object | ||
value | object | The boolean value. |
targetType | Type | The type of the binding target property. This parameter will be ignored. |
parameter | object | Use the string 'Invert' to get an inverted result (Visible and Collapsed are exchanged). /// Do not specify this parameter if the default behavior is desired. |
culture | string | The culture to use in the converter. |
return | object |
public ConvertBack ( object value, Type targetType, object parameter, |
||
value | object | |
targetType | Type | |
parameter | object | |
culture | ||
return | object |
public ConvertBack ( object value, Type targetType, object parameter, string culture ) : object | ||
value | object | The Visibility enumeration value. |
targetType | Type | The type of the binding target property. This parameter will be ignored. |
parameter | object | Use the string 'Invert' to get an inverted result (true and false are exchanged). /// Do not specify this parameter if the default behavior is desired. |
culture | string | The culture to use in the converter. |
return | object |