2 writes to Resources
PresentationFramework (2)
System\Windows\FrameworkElement.cs (1)
765set { Resources = value; }
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
6367bamlMember.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)
65Resources.Add(ToolTipStyleKey, new Style(typeof(ToolTip))
VSWpfThemeService.cs (1)
30frameworkElement.Resources.MergedDictionaries.Add(_themeDictionary);
PresentationFramework (9)
System\Windows\FrameworkElement.cs (4)
764get { return Resources; } 785if (Resources == null || Resources.Count == 0) 1631table = fe.Resources;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
6368bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.FrameworkElement)target).Resources; };
System\Windows\ThemeManager.cs (4)
133ThemeMode themeMode = GetThemeModeFromResourceDictionary(window.Resources); 234IEnumerable<int> indices = FindAllFluentThemeResourceDictionaryIndices(window.Resources); 238window.Resources.MergedDictionaries.RemoveAt(index); 251AddOrUpdateThemeResources(window.Resources, GetThemeDictionary(window.ThemeMode));
ReachFramework (1)
Serialization\VisualTreeFlattener.cs (1)
772ResourceDictionary res = el.Resources;