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
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.
            Dim attributes As String = CStr(buttonLocalized.GetValue(Localization.AttributesProperty))

            ' Set the value of the Localization.AttributesProperty dependency property.
            Dim newAttributes As String = "$Content(Button Unreadable Unmodifiable) FontFamily(Font Unreadable Unmodifiable)"
            buttonLocalized.SetValue(Localization.AttributesProperty, newAttributes)
// 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);

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

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

See Also

Reference

Localization Class

System.Windows Namespace