6 implementations of FindName
PresentationFramework (4)
System\Windows\FrameworkTemplate.cs (1)
344object INameScope.FindName(string name)
System\Windows\ResourceDictionary.cs (1)
297public object FindName(string name)
System\Windows\Style.cs (1)
90object INameScope.FindName(string name)
System\Windows\TemplateNameScope.cs (1)
204object INameScope.FindName(string name)
System.Xaml (2)
System\Xaml\NameScope.cs (1)
87public object FindName(string name)
System\Xaml\NameScopeDictionary.cs (1)
103public 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)
315namedObject = nameScope.FindName(targetName);
System.Xaml (5)
System\Xaml\Context\NameFixupToken.cs (1)
182namedObject = nameScope.FindName(name);
System\Xaml\Context\ObjectWriterContext.cs (2)
968object obj = nameScope.FindName(name); 1107object obj = nameScope.FindName(name);
System\Xaml\NameScopeDictionary.cs (2)
112return _underlyingNameScope.FindName(name); 166return new KeyValuePair<string, object>(name, _underlyingNameScope.FindName(name));