Ejemplo n.º 1
0
 public void Register(string key, IControlBindable bindable, IUIObject affectedPart)
 {
     _controlLogic.Register(key, bindable, affectedPart);
 }
Ejemplo n.º 2
0
 public void Register(string key, IControlBindable bindable, IUIObject affectedPart) => _target.Register(key, bindable, affectedPart);
Ejemplo n.º 3
0
 void IBinderControllable.Register(string key, IControlBindable bindable, DependencyObject affectedPart)
 {
     _controlLogic.Register(key, bindable, affectedPart);
     System.Windows.Input.CommandManager.InvalidateRequerySuggested();
 }
Ejemplo n.º 4
0
 public void Register(string key, IControlBindable bindable, DependencyObject affectedPart)
 {
     BindLogic.Register(key, bindable, affectedPart);
     CommandManager.InvalidateRequerySuggested();
 }
Ejemplo n.º 5
0
 void IBinderControllable.Register(string key, IControlBindable bindable, DependencyObject affectedPart)
 => _controlLogic.Register(key, bindable, affectedPart);