40 references to ParentBinding
PresentationFramework (34)
src\Framework\MS\Internal\Data\BindingWorker.cs (1)
81
protected Binding ParentBinding { get { return ParentBindingExpression.
ParentBinding
; } }
src\Framework\MS\Internal\TraceData.cs (1)
145
Describe(traceBuilder, bindingExpr.
ParentBinding
);
src\Framework\System\Windows\Controls\Primitives\Selector.cs (3)
602
string path = bindingExpr.
ParentBinding
.Path.Path;
756
binding = bindingExpr.
ParentBinding
;
2227
string path = bindingExpr.
ParentBinding
.Path.Path;
src\Framework\System\Windows\Controls\TreeView.cs (1)
312
binding = bindingExpr.
ParentBinding
;
src\Framework\System\Windows\Data\BindingExpression.cs (27)
71
UseDefaultValueConverter = (
ParentBinding
.Converter == null);
122
ObjectRef sourceRef =
ParentBinding
.SourceReference;
179
ObjectRef or =
ParentBinding
.SourceReference;
353
get { return
ParentBinding
.Path; }
389
get { return (
ParentBinding
.UpdateSourceTrigger == UpdateSourceTrigger.Default); }
527
if (
ParentBinding
.SourceReference == null ||
ParentBinding
.SourceReference.UsesMentor)
627
ObjectRef or =
ParentBinding
.SourceReference;
656
if (!lastChance &&
ParentBinding
.TreeContextIsRequired)
666
ParentBinding
.Path.Path));
698
if (
ParentBinding
.SourceReference == null)
726
RelativeObjectRef ror =
ParentBinding
.SourceReference as RelativeObjectRef;
783
else if ((sourceRef =
ParentBinding
.SourceReference) != null)
831
Converter =
ParentBinding
.Converter;
912
Activate(
ParentBinding
.SourceReference.GetDataObject(target,
959
if (!
ParentBinding
.BindsDirectlyToSource)
1305
value = Converter.Convert(value, targetType,
ParentBinding
.ConverterParameter, GetCulture());
1520
Collection<ValidationRule> validationRules =
ParentBinding
.ValidationRulesInternal;
1523
bool needDataErrorRule =
ParentBinding
.ValidatesOnDataErrors;
1856
value = Converter.ConvertBack(value, sourceType,
ParentBinding
.ConverterParameter, culture);
2075
if (result &&
ParentBinding
.ValidatesOnDataErrors)
2267
item =
ParentBinding
.SourceReference.GetDataObject(target,
2277
if (!
ParentBinding
.BindsDirectlyToSource)
2554
if (
ParentBinding
.UpdateSourceExceptionFilter != null)
2556
return
ParentBinding
.DoFilterException(this, ex);
2568
return ( (
ParentBinding
.UpdateSourceExceptionFilter != null) ||
2597
BindingOperations.SetBinding(target, TargetProperty,
ParentBinding
);
src\Framework\System\Windows\Data\BindingGroup.cs (1)
1963
_binding = bindExpr.
ParentBinding
;
System.Activities.Presentation (6)
System.Activities.Presentation\System\Activities\Presentation\View\ArgumentDesigner.xaml.cs (2)
1561
if (null != expr && null != expr.
ParentBinding
)
1563
expr.
ParentBinding
.UpdateSourceExceptionFilter = this.OnUpdateBindingException;
System.Activities.Presentation\System\Activities\Presentation\View\VariableDesigner.xaml.cs (2)
1543
if (null != expr && null != expr.
ParentBinding
)
1545
expr.
ParentBinding
.UpdateSourceExceptionFilter = this.OnUpdateBindingException;
System.Activities.Presentation\System\Activities\Presentation\View\VBIdentifierDesigner.xaml.cs (2)
87
if (null != binding && null != binding.
ParentBinding
)
90
binding.
ParentBinding
.UpdateSourceExceptionFilter = this.OnBindingException;