1 write to Names
PresentationFramework (1)
src\Framework\System\Windows\FrameworkTemplate.cs (1)
909Names = new XamlContextStack<Frame>(() => new Frame());
21 references to Names
PresentationFramework (21)
src\Framework\System\Windows\FrameworkTemplate.cs (21)
907if (Names == null) 1033bool isInsideNameScope = Names.Depth > 0 && (IsNameScope(Names.CurrentFrame.Type) || Names.CurrentFrame.InsideNameScope); 1034Names.PushScope(); 1035Names.CurrentFrame.Type = templateReader.Type; 1038Names.CurrentFrame.InsideNameScope = true; 1046bool isInsideNameScope = IsNameScope(Names.CurrentFrame.Type) || Names.CurrentFrame.InsideNameScope; 1047Names.PushScope(); 1048Names.CurrentFrame.Type = Names.PreviousFrame.Property.Type; 1051Names.CurrentFrame.InsideNameScope = true; 1057Names.CurrentFrame.Property = templateReader.Member; 1065if (Names.CurrentFrame.Property.DeferringLoader != null) 1069Names.CurrentFrame.Property = null; 1073Names.PopScope(); 1079if (Names.CurrentFrame.Property == XamlLanguage.ConnectionId) 1083_styleConnector.Connect((int)templateReader.Value, Names.CurrentFrame.Instance); 1124if (!Names.CurrentFrame.InsideNameScope && 1131Names.CurrentFrame.Instance = createdObject;