Esempio n. 1
0
 public CollectionBinding(object source, PropertyPath sourcePath, object target, PropertyPath targetPath, IValueConverter converter = null, object converterParameter = null, BindingMode model = BindingMode.OneWay)
     : base(source, sourcePath, target, targetPath, converter, converterParameter, UpdateSourceTrigger.OnlyActionUpdate, model)
 {
 }
Esempio n. 2
0
 public ObjectBinding(object source, PropertyPath sourcePath, object target, PropertyPath targetPath, IValueConverter converter = null, object converterParameter = null, UpdateSourceTrigger updateSourceTrigger = UpdateSourceTrigger.PropertyChanged, BindingMode model = BindingMode.OneWay) : base(source, sourcePath, target, targetPath, converter, converterParameter, updateSourceTrigger, model)
 {
     ApplyBind();
 }