2 writes to Resources
PresentationFramework (2)
System\Windows\FrameworkElement.cs (1)
776set { Resources = value; }
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
6369bamlMember.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)
775get { return Resources; } 796if (Resources == null || Resources.Count == 0) 1642table = fe.Resources;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
6370bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.FrameworkElement)target).Resources; };
System\Windows\ThemeManager.cs (4)
142ThemeMode themeMode = GetThemeModeFromResourceDictionary(window.Resources); 243IEnumerable<int> indices = FindAllFluentThemeResourceDictionaryIndices(window.Resources); 247window.Resources.MergedDictionaries.RemoveAt(index); 260AddOrUpdateThemeResources(window.Resources, GetThemeDictionary(window.ThemeMode));
ReachFramework (1)
Serialization\VisualTreeFlattener.cs (1)
779ResourceDictionary res = el.Resources;