1 write to Names
PresentationFramework (1)
System\Windows\FrameworkTemplate.cs (1)
893Names = new XamlContextStack<Frame>(() => new Frame());
21 references to Names
PresentationFramework (21)
System\Windows\FrameworkTemplate.cs (21)
891if (Names == null) 993bool isInsideNameScope = Names.Depth > 0 && (IsNameScope(Names.CurrentFrame.Type) || Names.CurrentFrame.InsideNameScope); 994Names.PushScope(); 995Names.CurrentFrame.Type = templateReader.Type; 998Names.CurrentFrame.InsideNameScope = true; 1006bool isInsideNameScope = IsNameScope(Names.CurrentFrame.Type) || Names.CurrentFrame.InsideNameScope; 1007Names.PushScope(); 1008Names.CurrentFrame.Type = Names.PreviousFrame.Property.Type; 1011Names.CurrentFrame.InsideNameScope = true; 1017Names.CurrentFrame.Property = templateReader.Member; 1025if (Names.CurrentFrame.Property.DeferringLoader != null) 1029Names.CurrentFrame.Property = null; 1033Names.PopScope(); 1039if (Names.CurrentFrame.Property == XamlLanguage.ConnectionId) 1041_styleConnector?.Connect((int)templateReader.Value, Names.CurrentFrame.Instance); 1081if (!Names.CurrentFrame.InsideNameScope && 1088Names.CurrentFrame.Instance = createdObject;