FrameworkTemplate.Resources プロパティ

定義

このテンプレートのスコープ内で使用できるリソースのコレクションを取得または設定します。

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

プロパティ値

ResourceDictionary

このテンプレートのスコープ内で使用できるリソース。

属性

注釈

XAML プロパティ要素の使用

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

- または -

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

XAML 値

oneOrMoreResourceElements
1 つ以上のリソース要素。 XAML の StaticResource マークアップ拡張 構文または DynamicResource マークアップ拡張 構文で後で参照するには、リソース要素に属性が x:Key 必要です。

<ResourceDictionary Source="externalDictionarySource"/>
を定義 ResourceDictionaryする外部ファイル。

適用対象