1 type derived from XamlContextStack
PresentationFramework (1)
src\Framework\System\Windows\TemplateContent.cs (1)
109internal class StackOfFrames : XamlContextStack<Frame>
4 instantiations of XamlContextStack
PresentationFramework (4)
src\Framework\System\Windows\FrameworkTemplate.cs (1)
909Names = new XamlContextStack<Frame>(() => new Frame());
src\Framework\System\Windows\Markup\Baml2006\Baml2006ReaderContext.cs (1)
72private XamlContextStack<Baml2006ReaderFrame> _stack = new XamlContextStack<Baml2006ReaderFrame>(() => new Baml2006ReaderFrame());
src\Framework\System\Windows\Markup\WpfXamlLoader.cs (1)
71XamlContextStack<WpfXamlFrame> stack = new XamlContextStack<WpfXamlFrame>(() => new WpfXamlFrame());
src\Framework\System\Windows\Markup\XamlReader.cs (1)
270_stack = new XamlContextStack<WpfXamlFrame>(() => new WpfXamlFrame());
8 references to XamlContextStack
PresentationFramework (8)
src\Framework\System\Windows\FrameworkTemplate.cs (1)
721private XamlContextStack<Frame> Names;
src\Framework\System\Windows\Markup\Baml2006\Baml2006ReaderContext.cs (1)
72private XamlContextStack<Baml2006ReaderFrame> _stack = new XamlContextStack<Baml2006ReaderFrame>(() => new Baml2006ReaderFrame());
src\Framework\System\Windows\Markup\WpfXamlLoader.cs (4)
71XamlContextStack<WpfXamlFrame> stack = new XamlContextStack<WpfXamlFrame>(() => new WpfXamlFrame()); 163XamlContextStack<WpfXamlFrame> stack, 337private static void WriteValue(Xaml.XamlReader xamlReader, XamlObjectWriter xamlWriter, XamlContextStack<WpfXamlFrame> stack, IStyleConnector styleConnector) 390private static void WriteStartObject(Xaml.XamlReader xamlReader, XamlObjectWriter xamlWriter, XamlContextStack<WpfXamlFrame> stack)
src\Framework\System\Windows\Markup\XamlReader.cs (1)
1126private XamlContextStack<WpfXamlFrame> _stack;
src\Shared\MS\Internal\Xaml\Context\XamlContextStack.cs (1)
28public XamlContextStack(XamlContextStack<T> source, bool copy)