StaticResourceExtension Class

Definition

Implements a markup extension that supports static (XAML load time) resource references made from XAML.

public ref class StaticResourceExtension : System::Windows::Markup::MarkupExtension
[System.Windows.Localizability(System.Windows.LocalizationCategory.NeverLocalize)]
[System.Windows.Markup.MarkupExtensionReturnType(typeof(System.Object))]
public class StaticResourceExtension : System.Windows.Markup.MarkupExtension
[<System.Windows.Localizability(System.Windows.LocalizationCategory.NeverLocalize)>]
[<System.Windows.Markup.MarkupExtensionReturnType(typeof(System.Object))>]
type StaticResourceExtension = class
    inherit MarkupExtension
Public Class StaticResourceExtension
Inherits MarkupExtension
Inheritance
StaticResourceExtension
Attributes

Remarks

This class is a markup extension implementation. Markup extension classes in WPF exist mainly to provide infrastructure support for some aspect of the WPF XAML processor implementation, and the members exposed by a markup extension are not typically called from user code. This extension supports the StaticResource Markup Extension usage from XAML. For more information on the mechanics of static resource lookup in WPF XAML, see StaticResource Markup Extension or XAML Resources.

{StaticResource} is a markup extension that is specific to the WPF implementation of XAML. You can use {StaticResource} when referencing the default XAML namespace for WPF, without using a prefix. In contrast, markup extensions that are defined for XAML language support (such as {x:Type}) require the prefix for the XAML language XAML namespace in the usage. For more information, see Markup Extensions and WPF XAML.

Static resource references are generally used in XAML whenever a DynamicResource Markup Extension is not explicitly necessary.

Constructors

StaticResourceExtension()

Initializes a new instance of the StaticResourceExtension class.

StaticResourceExtension(Object)

Initializes a new instance of the StaticResourceExtension class, with the provided initial key.

Properties

ResourceKey

Gets or sets the key value passed by this static resource reference. They key is used to return the object matching that key in resource dictionaries.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ProvideValue(IServiceProvider)

Returns an object that should be set on the property where this extension is applied. For StaticResourceExtension, this is the object found in a resource dictionary, where the object to find is identified by the ResourceKey.

ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to