6 implementations of FindName
PresentationFramework (4)
System\Windows\FrameworkTemplate.cs (1)
347object INameScope.FindName(string name)
System\Windows\ResourceDictionary.cs (1)
298public object FindName(string name)
System\Windows\Style.cs (1)
100object INameScope.FindName(string name)
System\Windows\TemplateNameScope.cs (1)
205object INameScope.FindName(string name)
System.Xaml (2)
System\Xaml\NameScope.cs (1)
88public object FindName(string name)
System\Xaml\NameScopeDictionary.cs (1)
104public object FindName(string name)
8 references to FindName
PresentationFramework (3)
System\Windows\Generated\FrameworkContentElement.cs (1)
111return nameScope.FindName(name);
System\Windows\Generated\FrameworkElement.cs (1)
111return nameScope.FindName(name);
System\Windows\Media\Animation\Storyboard.cs (1)
314namedObject = nameScope.FindName(targetName);
System.Xaml (5)
System\Xaml\Context\NameFixupToken.cs (1)
179namedObject = nameScope.FindName(name);
System\Xaml\Context\ObjectWriterContext.cs (2)
954object obj = nameScope.FindName(name); 1088object obj = nameScope.FindName(name);
System\Xaml\NameScopeDictionary.cs (2)
113return _underlyingNameScope.FindName(name); 166return new KeyValuePair<string,object>(name, _underlyingNameScope.FindName(name));