Localization.Attributes Attached Property

Gets or sets which resources, such as FontFamily, are to be localized.

Namespace:  System.Windows
Assembly:  PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: https://schemas.microsoft.com/winfx/2006/xaml/presentation, https://schemas.microsoft.com/netfx/2007/xaml/presentation

Syntax

'Declaration
See GetAttributes, SetAttributes
'Usage
See GetAttributes, SetAttributes
See GetAttributes, SetAttributes
See GetAttributes, SetAttributes
See GetAttributes, SetAttributes
<object Localization.Attributes="string" .../>

Property Value

Type: System.String
The resources to be localized.

Examples

The following code example shows how to get and set the Attributes attached property for a button.

// Get the value of the Localization.AttributesProperty dependency property.
string attributes = (string)buttonLocalized.GetValue(Localization.AttributesProperty);

// Set the value of the Localization.AttributesProperty dependency property.
string newAttributes = "$Content(Button Unreadable Unmodifiable) FontFamily(Font Unreadable Unmodifiable)";
buttonLocalized.SetValue(Localization.AttributesProperty, newAttributes);

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Version Information

.NET Framework

Supported in: 3.5, 3.0

See Also

Reference

Localization Class

Localization Members

System.Windows Namespace