6 implementations of FindName
PresentationFramework (4)
System\Windows\FrameworkTemplate.cs (1)
344
object INameScope.
FindName
(string name)
System\Windows\ResourceDictionary.cs (1)
297
public object
FindName
(string name)
System\Windows\Style.cs (1)
90
object INameScope.
FindName
(string name)
System\Windows\TemplateNameScope.cs (1)
204
object INameScope.
FindName
(string name)
System.Xaml (2)
System\Xaml\NameScope.cs (1)
87
public object
FindName
(string name)
System\Xaml\NameScopeDictionary.cs (1)
103
public object
FindName
(string name)
8 references to FindName
PresentationFramework (3)
System\Windows\Generated\FrameworkContentElement.cs (1)
111
return nameScope.
FindName
(name);
System\Windows\Generated\FrameworkElement.cs (1)
111
return nameScope.
FindName
(name);
System\Windows\Media\Animation\Storyboard.cs (1)
315
namedObject = nameScope.
FindName
(targetName);
System.Xaml (5)
System\Xaml\Context\NameFixupToken.cs (1)
182
namedObject = nameScope.
FindName
(name);
System\Xaml\Context\ObjectWriterContext.cs (2)
968
object obj = nameScope.
FindName
(name);
1107
object obj = nameScope.
FindName
(name);
System\Xaml\NameScopeDictionary.cs (2)
112
return _underlyingNameScope.
FindName
(name);
166
return new KeyValuePair<string, object>(name, _underlyingNameScope.
FindName
(name));