34 references to ParentBinding
PresentationFramework (34)
MS\Internal\Data\BindingWorker.cs (1)
78protected Binding ParentBinding { get { return ParentBindingExpression.ParentBinding; } }
MS\Internal\TraceData.cs (1)
144Describe(traceBuilder, bindingExpr.ParentBinding);
System\Windows\Controls\Primitives\Selector.cs (3)
592string path = bindingExpr.ParentBinding.Path.Path; 746binding = bindingExpr.ParentBinding; 2182string path = bindingExpr.ParentBinding.Path.Path;
System\Windows\Controls\TreeView.cs (1)
311binding = bindingExpr.ParentBinding;
System\Windows\Data\BindingExpression.cs (27)
67UseDefaultValueConverter = (ParentBinding.Converter == null); 120ObjectRef sourceRef = ParentBinding.SourceReference; 177ObjectRef or = ParentBinding.SourceReference; 348get { return ParentBinding.Path; } 384get { return (ParentBinding.UpdateSourceTrigger == UpdateSourceTrigger.Default); } 522if (ParentBinding.SourceReference == null || ParentBinding.SourceReference.UsesMentor) 624ObjectRef or = ParentBinding.SourceReference; 655if (!lastChance && ParentBinding.TreeContextIsRequired) 665ParentBinding.Path.Path), 699if (ParentBinding.SourceReference == null) 727RelativeObjectRef ror = ParentBinding.SourceReference as RelativeObjectRef; 786else if ((sourceRef = ParentBinding.SourceReference) != null) 834Converter = ParentBinding.Converter; 915Activate(ParentBinding.SourceReference.GetDataObject(target, 962if (!ParentBinding.BindsDirectlyToSource) 1313value = Converter.Convert(value, targetType, ParentBinding.ConverterParameter, GetCulture()); 1535Collection<ValidationRule> validationRules = ParentBinding.ValidationRulesInternal; 1538bool needDataErrorRule = ParentBinding.ValidatesOnDataErrors; 1873value = Converter.ConvertBack(value, sourceType, ParentBinding.ConverterParameter, culture); 2095if (result && ParentBinding.ValidatesOnDataErrors) 2287item = ParentBinding.SourceReference.GetDataObject(target, 2297if (!ParentBinding.BindsDirectlyToSource) 2578if (ParentBinding.UpdateSourceExceptionFilter != null) 2580return ParentBinding.DoFilterException(this, ex); 2592return ( (ParentBinding.UpdateSourceExceptionFilter != null) || 2621BindingOperations.SetBinding(target, TargetProperty, ParentBinding);
System\Windows\Data\BindingGroup.cs (1)
1961_binding = bindExpr.ParentBinding;