4 writes to Previous
PresentationFramework (4)
src\Shared\MS\Internal\Xaml\Context\XamlContextStack.cs (4)
49lastFrameInNewStack.Previous = newFrame; 62_currentFrame.Previous = lastFrame; 104_currentFrame.Previous = lastFrame; 117frameToRecycle.Previous = _recycledFrame;
12 references to Previous
PresentationFramework (12)
src\Framework\System\Windows\Markup\Baml2006\Baml2006Reader.cs (1)
2074currentFrame = (Baml2006ReaderFrame)currentFrame.Previous;
src\Framework\System\Windows\Markup\WpfXamlLoader.cs (1)
195iteratorFrame = (WpfXamlFrame)iteratorFrame.Previous;
src\Framework\System\Windows\TemplateContent.cs (1)
182iteratorFrame = (Frame)iteratorFrame.Previous;
src\Shared\MS\Internal\Xaml\Context\XamlContextStack.cs (9)
52iteratorFrame = (T)iteratorFrame.Previous; 72get { return (T)_currentFrame.Previous; } 77get { return (T)_currentFrame.Previous.Previous; } 86iteratorFrame = (T)iteratorFrame.Previous; 103_recycledFrame = (T)_recycledFrame.Previous; 116_currentFrame = (T)_currentFrame.Previous; 151if (iteratorFrame.Previous != null) 152ShowFrame(sb, (T)iteratorFrame.Previous);