bind
Description:
public void bind (string source_property, Object target, string target_property, BindingFlags flags)
Creates a binding between source_property
on the source object and target_property
on target
.
Whenever the source_property
is changed the target_property
is updated using the same value. The binding flag
g_binding_sync_create is automatically specified.
See g_object_bind_property
for more information.
Parameters:
this |
the BindingGroup |
source_property |
the property on the source to bind |
target |
the target Object |
target_property |
the property on |
flags |
the flags used to create the Binding |