4 writes to InheritanceBehavior
PresentationFramework (4)
src\Framework\System\Windows\Controls\Frame.cs (1)
166InheritanceBehavior = InheritanceBehavior.SkipToAppNow;
src\Framework\System\Windows\Documents\DocumentReference.cs (1)
262this.InheritanceBehavior = InheritanceBehavior.SkipToAppNow;
src\Framework\System\Windows\Documents\FixedPage.cs (1)
1030this.InheritanceBehavior = InheritanceBehavior.SkipAllNext;
src\Framework\System\Windows\Documents\PageContent.cs (1)
501InheritanceBehavior = InheritanceBehavior.SkipToAppNow;
11 references to InheritanceBehavior
PresentationFramework (11)
src\Framework\MS\Internal\Data\ObjectRef.cs (1)
243if (cc != null && cc.Content == fo.DO && cc.InheritanceBehavior == InheritanceBehavior.Default)
src\Framework\MS\Internal\FrameworkObject.cs (1)
572return _fe.InheritanceBehavior;
src\Framework\System\Windows\Controls\Page.cs (1)
791if ((feParent != null) && (feParent.InheritanceBehavior == InheritanceBehavior.Default))
src\Framework\System\Windows\FrameworkElement.cs (3)
1971if (!TreeWalkHelper.SkipNext(InheritanceBehavior) || fmetadata.OverridesInheritanceBehavior == true) 2157if ((InheritanceBehavior == InheritanceBehavior.Default || fmetadata.OverridesInheritanceBehavior) && 2200TreeWalkHelper.OnInheritedPropertyChanged(this, ref info, InheritanceBehavior);
src\Framework\System\Windows\Generated\FrameworkContentElement.cs (1)
508parentInheritanceBehavior = parentFE.InheritanceBehavior;
src\Framework\System\Windows\Generated\FrameworkElement.cs (2)
523parentInheritanceBehavior = parentFE.InheritanceBehavior; 532if (!TreeWalkHelper.SkipNext(InheritanceBehavior) && !TreeWalkHelper.SkipNow(parentInheritanceBehavior))
src\Framework\System\Windows\TreeWalkHelper.cs (2)
1186if (fe.InheritanceBehavior != InheritanceBehavior.Default && !metadata.OverridesInheritanceBehavior) 1189inheritanceBehavior = fe.InheritanceBehavior;