4 writes to InheritanceBehavior
PresentationFramework (4)
System\Windows\Controls\Frame.cs (1)
159InheritanceBehavior = InheritanceBehavior.SkipToAppNow;
System\Windows\Documents\DocumentReference.cs (1)
259this.InheritanceBehavior = InheritanceBehavior.SkipToAppNow;
System\Windows\Documents\FixedPage.cs (1)
999this.InheritanceBehavior = InheritanceBehavior.SkipAllNext;
System\Windows\Documents\PageContent.cs (1)
485InheritanceBehavior = InheritanceBehavior.SkipToAppNow;
11 references to InheritanceBehavior
PresentationFramework (11)
MS\Internal\Data\ObjectRef.cs (1)
239if (cc != null && cc.Content == fo.DO && cc.InheritanceBehavior == InheritanceBehavior.Default)
MS\Internal\FrameworkObject.cs (1)
544return _fe.InheritanceBehavior;
System\Windows\Controls\Page.cs (1)
782if ((feParent != null) && (feParent.InheritanceBehavior == InheritanceBehavior.Default))
System\Windows\FrameworkElement.cs (3)
1965if (!TreeWalkHelper.SkipNext(InheritanceBehavior) || fmetadata.OverridesInheritanceBehavior == true) 2151if ((InheritanceBehavior == InheritanceBehavior.Default || fmetadata.OverridesInheritanceBehavior) && 2194TreeWalkHelper.OnInheritedPropertyChanged(this, ref info, InheritanceBehavior);
System\Windows\Generated\FrameworkContentElement.cs (1)
496parentInheritanceBehavior = parentFE.InheritanceBehavior;
System\Windows\Generated\FrameworkElement.cs (2)
512parentInheritanceBehavior = parentFE.InheritanceBehavior; 521if (!TreeWalkHelper.SkipNext(InheritanceBehavior) && !TreeWalkHelper.SkipNow(parentInheritanceBehavior))
System\Windows\TreeWalkHelper.cs (2)
1180if (fe.InheritanceBehavior != InheritanceBehavior.Default && !metadata.OverridesInheritanceBehavior) 1183inheritanceBehavior = fe.InheritanceBehavior;