Click to Rate and Give Feedback

  Switch on low bandwidth view
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
RuntimeNamePropertyAttribute Class

Specifies the property of a class that maps to the XAML x:Name attribute.

Namespace:  System.Windows.Markup
Assembly:  WindowsBase (in WindowsBase.dll)
Visual Basic (Declaration)
<AttributeUsageAttribute(AttributeTargets.Class)> _
Public NotInheritable Class RuntimeNamePropertyAttribute _
    Inherits Attribute
Visual Basic (Usage)
Dim instance As RuntimeNamePropertyAttribute
C#
[AttributeUsageAttribute(AttributeTargets.Class)]
public sealed class RuntimeNamePropertyAttribute : Attribute
Visual C++
[AttributeUsageAttribute(AttributeTargets::Class)]
public ref class RuntimeNamePropertyAttribute sealed : public Attribute
JScript
public final class RuntimeNamePropertyAttribute extends Attribute
XAML
You cannot directly create an instance of this class in XAML.

The property that is specified in the RuntimeNamePropertyAttribute must of type String and must be read/write.

A XAML name value must use the XamlName Grammar.

An example of an existing class in Windows Presentation Foundation (WPF) where the RuntimeNamePropertyAttribute is applied is FrameworkElement. The Name property on FrameworkElement is set as the runtime name property, which results in any FrameworkElement derived class also using Name as its runtime name property.

In general, you do not typically need to apply this attribute unless you are implementing a new or FrameworkElement-parallel framework-level class.

The following example creates a class named Book, with the RuntimeNamePropertyAttribute applied. The property named BookID is set as the runtime name property.

C#
[RuntimeNameProperty("BookID")]
public class Book
{
    public Book()
    {
    }

    public string BookID
    {
        get { return _bookID; }
        set { _bookID = value; }
    }

    private string _bookID = string.Empty;
}

System..::.Object
  System..::.Attribute
    System.Windows.Markup..::.RuntimeNamePropertyAttribute
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

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.

.NET Framework

Supported in: 3.5, 3.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker