FrameworkTemplate.Resources Property

Definition

Gets or sets the collection of resources that can be used within the scope of this template.

public:
 property System::Windows::ResourceDictionary ^ Resources { System::Windows::ResourceDictionary ^ get(); void set(System::Windows::ResourceDictionary ^ value); };
public System.Windows.ResourceDictionary Resources { get; set; }
[System.Windows.Markup.Ambient]
public System.Windows.ResourceDictionary Resources { get; set; }
member this.Resources : System.Windows.ResourceDictionary with get, set
[<System.Windows.Markup.Ambient>]
member this.Resources : System.Windows.ResourceDictionary with get, set
Public Property Resources As ResourceDictionary

Property Value

The resources that can be used within the scope of this template.

Attributes

Remarks

XAML Property Element Usage

<object>  
  <object.Resources>  
    oneOrMoreResourceElements  
  </object.Resources>  
</object>

-or-

<object>  
  <object.Resources>  
    <ResourceDictionary Source="externalDictionarySource"/>  
  </object.Resources>  
</object>  

XAML Values

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.

Applies to