2 writes to Resources
PresentationFramework (2)
src\Framework\System\Windows\FrameworkElement.cs (1)
769set { Resources = value; }
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
6327bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.FrameworkElement)target).Resources = (System.Windows.ResourceDictionary)value; };
12 references to Resources
PresentationFramework (5)
src\Framework\System\Windows\FrameworkElement.cs (4)
768get { return Resources; } 789if (Resources == null || Resources.Count == 0) 1641table = fe.Resources;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
6328bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.FrameworkElement)target).Resources; };
System.Activities.Presentation (7)
System.Activities.Presentation\System\Activities\Presentation\View\ActivityTypeResolver.xaml.cs (1)
310return ((ActivityTypeResolver)this.Owner).Resources["ActivityTypeResolverAutomationName"] as string;
System.Activities.Presentation\System\Activities\Presentation\View\DataGridHelper.cs (1)
912container.ContentTemplate = (DataTemplate)dataGrid.Resources["dynamicContentErrorTemplate"];
System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.xaml.cs (4)
190this.scrollViewerPanner.Hand = (Cursor)this.Resources["ReadyToPanCursor"]; 191this.scrollViewerPanner.DraggingHand = (Cursor)this.Resources["PanningCursor"]; 1228zoomPickerTextBox.SetValue(TextBlock.ForegroundProperty, this.Resources["ShellBarForegroundActiveColor"] as SolidColorBrush); 1240zoomPickerTextBox.SetValue(TextBlock.ForegroundProperty, this.Resources["ShellBarForegroundInactiveColor"] as SolidColorBrush);
System.Activities.Presentation\System\Activities\Presentation\View\TypeBrowser.xaml.cs (1)
878return ((TypeBrowser)this.Owner).Resources["TypeBrowserAutomationName"] as string;