This documentation is archived and is not being maintained.
XmlLangPropertyAttribute Class
Visual Studio 2008
Specifies the property to associate with the xml:lang Handling in XAML.
Assembly: WindowsBase (in WindowsBase.dll)
The following example creates a class named MyElement which is decorated with the XmlLangPropertyAttribute. The property named Language on the MyElement class is set as the xml:lang property.
[XmlLangProperty("Language")] public class MyElement : UIElement { public MyElement() { } public string Language { get { return _language; } set { _language = value; } } private string _language; }
The following markup shows the MyElement class being instantiated in Extensible Application Markup Language (XAML) and shows two equivalent ways of setting the xml:lang.
<StackPanel xmlns:custom="clr-namespace:SDKSamples"> <custom:MyElement Language="en-US"></custom:MyElement> <custom:MyElement xml:lang="en-US"></custom:MyElement> </StackPanel>
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.
Show: