FrameworkTemplate::Resources Property
.NET Framework (current version)
Gets or sets the collection of resources that can be used within the scope of this template.
Assembly: PresentationFramework (in PresentationFramework.dll)
public: [AmbientAttribute] property ResourceDictionary^ Resources { ResourceDictionary^ get(); void set(ResourceDictionary^ value); }
Property Value
Type: System.Windows::ResourceDictionary^The resources that can be used within the scope of this template.
<object>
<object.Resources>
oneOrMoreResourceElements
</object.Resources>
</object>
- or -
<object>
<object.Resources>
<ResourceDictionary Source="externalDictionarySource"/>
</object.Resources>
</object>
- oneOrMoreResourceElements
One or more resource elements. To be referenced later in either StaticResource Markup Extension or DynamicResource Markup Extension syntax in XAML, a resource element MUST have an x:Key attribute.
- <ResourceDictionary Source="externalDictionarySource"/>
An external file that defines a ResourceDictionary.
.NET Framework
Available since 3.0
Available since 3.0
Show: