Ejemplo n.º 1
0
 protected void TryUpdate(IBindable bindable, String value)
 {
     if (bindable != null)
     {
         bindable.Update(value);
     }
 }
Ejemplo n.º 2
0
 protected void CreateBindings(IBindable bindable, String attributeName)
 {
     bindable.Changed += value => UpdateAttribute(attributeName, value);
     RegisterAttributeObserver(attributeName, value => bindable.Update(value));
 }
Ejemplo n.º 3
0
 protected void CreateBindings(IBindable bindable, String attributeName)
 {
     bindable.Changed += value => UpdateAttribute(attributeName, value);
     RegisterAttributeObserver(attributeName, value => bindable.Update(value));
 }