2 writes to Resources
PresentationFramework (2)
System\Windows\FrameworkElement.cs (1)
776
set {
Resources
= value; }
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
6369
bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.FrameworkElement)target).
Resources
= (System.Windows.ResourceDictionary)value; };
12 references to Resources
Microsoft.VisualStudio.LanguageServices (2)
InheritanceMargin\MarginGlyph\InheritanceMarginGlyph.cs (1)
65
Resources
.Add(ToolTipStyleKey, new Style(typeof(ToolTip))
VSWpfThemeService.cs (1)
30
frameworkElement.
Resources
.MergedDictionaries.Add(_themeDictionary);
PresentationFramework (9)
System\Windows\FrameworkElement.cs (4)
775
get { return
Resources
; }
796
if (
Resources
== null ||
Resources
.Count == 0)
1642
table = fe.
Resources
;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
6370
bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.FrameworkElement)target).
Resources
; };
System\Windows\ThemeManager.cs (4)
142
ThemeMode themeMode = GetThemeModeFromResourceDictionary(window.
Resources
);
243
IEnumerable<int> indices = FindAllFluentThemeResourceDictionaryIndices(window.
Resources
);
247
window.
Resources
.MergedDictionaries.RemoveAt(index);
260
AddOrUpdateThemeResources(window.
Resources
, GetThemeDictionary(window.ThemeMode));
ReachFramework (1)
Serialization\VisualTreeFlattener.cs (1)
779
ResourceDictionary res = el.
Resources
;