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