1 write to Names
PresentationFramework (1)
System\Windows\FrameworkTemplate.cs (1)
896Names = new XamlContextStack<Frame>(() => new Frame());
21 references to Names
PresentationFramework (21)
System\Windows\FrameworkTemplate.cs (21)
894if (Names == null) 996bool isInsideNameScope = Names.Depth > 0 && (IsNameScope(Names.CurrentFrame.Type) || Names.CurrentFrame.InsideNameScope); 997Names.PushScope(); 998Names.CurrentFrame.Type = templateReader.Type; 1001Names.CurrentFrame.InsideNameScope = true; 1009bool isInsideNameScope = IsNameScope(Names.CurrentFrame.Type) || Names.CurrentFrame.InsideNameScope; 1010Names.PushScope(); 1011Names.CurrentFrame.Type = Names.PreviousFrame.Property.Type; 1014Names.CurrentFrame.InsideNameScope = true; 1020Names.CurrentFrame.Property = templateReader.Member; 1028if (Names.CurrentFrame.Property.DeferringLoader != null) 1032Names.CurrentFrame.Property = null; 1036Names.PopScope(); 1042if (Names.CurrentFrame.Property == XamlLanguage.ConnectionId) 1044_styleConnector?.Connect((int)templateReader.Value, Names.CurrentFrame.Instance); 1084if (!Names.CurrentFrame.InsideNameScope && 1091Names.CurrentFrame.Instance = createdObject;