Example #1
0
 public void Bind()
 {
     foreach (MVVMSetter setter in Setters)
     {
         setter.Bind();
     }
     Binding.Bind();
 }
Example #2
0
 public void Bind()
 {
     foreach (MVVMSetter setter in Setters)
     {
         setter.Bind();
     }
     Property.Bind();
 }
Example #3
0
 public void Bind()
 {
     Property.Bind();
     RawValue = Property.GetSourceValue();
     if (BindingValue != null)
     {
         BindingValue.Bind();
     }
 }
Example #4
0
 public MVVMControlBase Build(MVVMControlBase root = null)
 {
     if (root == null)
     {
         root = Parent == null ? this : Parent.Root;
     }
     NamedControls.Clear();
     ForEach(control => control.Register(root));
     DataContext.Bind();
     return(this);
 }