34 references to ParentBinding
PresentationFramework (34)
MS\Internal\Data\BindingWorker.cs (1)
73protected Binding ParentBinding { get { return ParentBindingExpression.ParentBinding; } }
MS\Internal\TraceData.cs (1)
138Describe(traceBuilder, bindingExpr.ParentBinding);
System\Windows\Controls\Primitives\Selector.cs (3)
579string path = bindingExpr.ParentBinding.Path.Path; 733binding = bindingExpr.ParentBinding; 2170string path = bindingExpr.ParentBinding.Path.Path;
System\Windows\Controls\TreeView.cs (1)
303binding = bindingExpr.ParentBinding;
System\Windows\Data\BindingExpression.cs (27)
57UseDefaultValueConverter = (ParentBinding.Converter == null); 110ObjectRef sourceRef = ParentBinding.SourceReference; 167ObjectRef or = ParentBinding.SourceReference; 335get { return ParentBinding.Path; } 371get { return (ParentBinding.UpdateSourceTrigger == UpdateSourceTrigger.Default); } 509if (ParentBinding.SourceReference == null || ParentBinding.SourceReference.UsesMentor) 611ObjectRef or = ParentBinding.SourceReference; 642if (!lastChance && ParentBinding.TreeContextIsRequired) 652ParentBinding.Path.Path), 686if (ParentBinding.SourceReference == null) 714RelativeObjectRef ror = ParentBinding.SourceReference as RelativeObjectRef; 773else if ((sourceRef = ParentBinding.SourceReference) != null) 821Converter = ParentBinding.Converter; 902Activate(ParentBinding.SourceReference.GetDataObject(target, 949if (!ParentBinding.BindsDirectlyToSource) 1299value = Converter.Convert(value, targetType, ParentBinding.ConverterParameter, GetCulture()); 1521Collection<ValidationRule> validationRules = ParentBinding.ValidationRulesInternal; 1524bool needDataErrorRule = ParentBinding.ValidatesOnDataErrors; 1836value = Converter.ConvertBack(value, sourceType, ParentBinding.ConverterParameter, culture); 2046if (result && ParentBinding.ValidatesOnDataErrors) 2238item = ParentBinding.SourceReference.GetDataObject(target, 2248if (!ParentBinding.BindsDirectlyToSource) 2529if (ParentBinding.UpdateSourceExceptionFilter != null) 2531return ParentBinding.DoFilterException(this, ex); 2543return ( (ParentBinding.UpdateSourceExceptionFilter != null) || 2572BindingOperations.SetBinding(target, TargetProperty, ParentBinding);
System\Windows\Data\BindingGroup.cs (1)
1934_binding = bindExpr.ParentBinding;