4 writes to InheritanceBehavior
PresentationFramework (4)
System\Windows\Controls\Frame.cs (1)
147InheritanceBehavior = InheritanceBehavior.SkipToAppNow;
System\Windows\Documents\DocumentReference.cs (1)
246this.InheritanceBehavior = InheritanceBehavior.SkipToAppNow;
System\Windows\Documents\FixedPage.cs (1)
991this.InheritanceBehavior = InheritanceBehavior.SkipAllNext;
System\Windows\Documents\PageContent.cs (1)
471InheritanceBehavior = InheritanceBehavior.SkipToAppNow;
11 references to InheritanceBehavior
PresentationFramework (11)
MS\Internal\Data\ObjectRef.cs (1)
233if (cc != null && cc.Content == fo.DO && cc.InheritanceBehavior == InheritanceBehavior.Default)
MS\Internal\FrameworkObject.cs (1)
541return _fe.InheritanceBehavior;
System\Windows\Controls\Page.cs (1)
775if ((feParent != null) && (feParent.InheritanceBehavior == InheritanceBehavior.Default))
System\Windows\FrameworkElement.cs (3)
1961if (!TreeWalkHelper.SkipNext(InheritanceBehavior) || fmetadata.OverridesInheritanceBehavior == true) 2147if ((InheritanceBehavior == InheritanceBehavior.Default || fmetadata.OverridesInheritanceBehavior) && 2190TreeWalkHelper.OnInheritedPropertyChanged(this, ref info, InheritanceBehavior);
System\Windows\Generated\FrameworkContentElement.cs (1)
490parentInheritanceBehavior = parentFE.InheritanceBehavior;
System\Windows\Generated\FrameworkElement.cs (2)
506parentInheritanceBehavior = parentFE.InheritanceBehavior; 515if (!TreeWalkHelper.SkipNext(InheritanceBehavior) && !TreeWalkHelper.SkipNow(parentInheritanceBehavior))
System\Windows\TreeWalkHelper.cs (2)
1187if (fe.InheritanceBehavior != InheritanceBehavior.Default && !metadata.OverridesInheritanceBehavior) 1190inheritanceBehavior = fe.InheritanceBehavior;