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