-
Notifications
You must be signed in to change notification settings - Fork 3
BindableChild
JaykeBird edited this page Feb 21, 2023
·
4 revisions
Back to home | Back to Reference | View raw text
Add the ability to set a child to an object via WPF binding.
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SolidShineUi
SolidShineUi.BindableChild[[BindableChild]]
end
Returns | Name |
---|---|
UIElement |
GetBindableChild (DependencyObject obj)Get the bindable child element for this object. |
void |
SetBindableChild (DependencyObject obj, UIElement value)Set the bindable child element for this object. |
Add the ability to set a child to an object via WPF binding.
public BindableChild()
public static UIElement GetBindableChild(DependencyObject obj)
Type | Name | Description |
---|---|---|
DependencyObject |
obj |
Get the bindable child element for this object.
public static void SetBindableChild(DependencyObject obj, UIElement value)
Type | Name | Description |
---|---|---|
DependencyObject |
obj | |
UIElement |
value |
Set the bindable child element for this object.
Generated with ModularDoc