Style::Resources Property
.NET Framework (current version)
Gets or sets the collection of resources that can be used within the scope of this style.
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 style.
<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 dictionary source. For details, see Merged Resource Dictionaries.
.NET Framework
Available since 3.0
Available since 3.0
Show: