6 implementations of FindName
PresentationFramework (4)
System\Windows\FrameworkTemplate.cs (1)
356object INameScope.FindName(string name)
System\Windows\ResourceDictionary.cs (1)
308public object FindName(string name)
System\Windows\Style.cs (1)
110object INameScope.FindName(string name)
System\Windows\TemplateNameScope.cs (1)
209object INameScope.FindName(string name)
System.Xaml (2)
System\Xaml\NameScope.cs (1)
89public object FindName(string name)
System\Xaml\NameScopeDictionary.cs (1)
105public object FindName(string name)
8 references to FindName
PresentationFramework (3)
System\Windows\Generated\FrameworkContentElement.cs (1)
117return nameScope.FindName(name);
System\Windows\Generated\FrameworkElement.cs (1)
117return nameScope.FindName(name);
System\Windows\Media\Animation\Storyboard.cs (1)
317namedObject = nameScope.FindName(targetName);
System.Xaml (5)
System\Xaml\Context\NameFixupToken.cs (1)
182namedObject = nameScope.FindName(name);
System\Xaml\Context\ObjectWriterContext.cs (2)
977object obj = nameScope.FindName(name); 1111object obj = nameScope.FindName(name);
System\Xaml\NameScopeDictionary.cs (2)
114return _underlyingNameScope.FindName(name); 167return new KeyValuePair<string,object>(name, _underlyingNameScope.FindName(name));