diff options
author | Felipe Magno de Almeida <felipe@expertisesolutions.com.br> | 2019-08-13 20:38:53 -0300 |
---|---|---|
committer | Felipe Magno de Almeida <felipe@expertisesolutions.com.br> | 2019-08-13 20:38:53 -0300 |
commit | cc8a91456908cc64cb81663ae79663eceaf9d4ae (patch) | |
tree | f83965e65ced8d46af8475dc13faa4934ffefa95 | |
parent | 0bb1a6f41049875e79ce7914b87f89d800165607 (diff) | |
download | efl-devs/felipealmeida/mvvm-parts.tar.gz |
efl-mono: Add call to property bind for partsdevs/felipealmeida/mvvm-parts
-rw-r--r-- | src/bindings/mono/efl_mono/Bind.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bindings/mono/efl_mono/Bind.cs b/src/bindings/mono/efl_mono/Bind.cs index 6f5677438a..f411204399 100644 --- a/src/bindings/mono/efl_mono/Bind.cs +++ b/src/bindings/mono/efl_mono/Bind.cs @@ -40,8 +40,7 @@ public class BindableProperty<T> } else { - // FIXME Part binding goes here - Eina.Log.Error($"Binding part {partName}.{propertyName} to {modelProperty}"); + ((Efl.Ui.IPropertyBind)((Efl.IPart)this.binder).GetPart (this.partName)).PropertyBind (this.propertyName, modelProperty); } } |