6 implementations of FindName
PresentationFramework (4)
System\Windows\FrameworkTemplate.cs (1)
347
object INameScope.
FindName
(string name)
System\Windows\ResourceDictionary.cs (1)
298
public object
FindName
(string name)
System\Windows\Style.cs (1)
100
object INameScope.
FindName
(string name)
System\Windows\TemplateNameScope.cs (1)
205
object INameScope.
FindName
(string name)
System.Xaml (2)
System\Xaml\NameScope.cs (1)
88
public object
FindName
(string name)
System\Xaml\NameScopeDictionary.cs (1)
104
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)
314
namedObject = nameScope.
FindName
(targetName);
System.Xaml (5)
System\Xaml\Context\NameFixupToken.cs (1)
179
namedObject = nameScope.
FindName
(name);
System\Xaml\Context\ObjectWriterContext.cs (2)
954
object obj = nameScope.
FindName
(name);
1088
object obj = nameScope.
FindName
(name);
System\Xaml\NameScopeDictionary.cs (2)
113
return _underlyingNameScope.
FindName
(name);
166
return new KeyValuePair<string,object>(name, _underlyingNameScope.
FindName
(name));