-
Notifications
You must be signed in to change notification settings - Fork 3
BindableChildConverter
JaykeBird edited this page Feb 21, 2023
·
4 revisions
Back to home | Back to Reference | View raw text
A converter used to set the child of a control to a bound element.
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SolidShineUi
SolidShineUi.BindableChildConverter[[BindableChildConverter]]
end
subgraph System.Windows.Data
System.Windows.Data.IValueConverter[[IValueConverter]]
end
System.Windows.Data.IValueConverter --> SolidShineUi.BindableChildConverter
Returns | Name |
---|---|
object |
Convert (object value, Type targetType, object parameter, CultureInfo culture)Convert an UIElement to be the child of a Border. |
object |
ConvertBack (object value, Type targetType, object parameter, CultureInfo culture)Convert a Border's child to get the UIElement it represents. |
A converter used to set the child of a control to a bound element.
IValueConverter
public BindableChildConverter()
public virtual object Convert(object value, Type targetType, object parameter, CultureInfo culture)
Type | Name | Description |
---|---|---|
object |
value | |
Type |
targetType | |
object |
parameter | |
CultureInfo |
culture |
Convert an UIElement to be the child of a Border.
public virtual object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
Type | Name | Description |
---|---|---|
object |
value | |
Type |
targetType | |
object |
parameter | |
CultureInfo |
culture |
Convert a Border's child to get the UIElement it represents.
Generated with ModularDoc