BindableAttribute Class

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Specifies whether a member is typically used for binding. This class cannot be inherited.

Inheritance Hierarchy

System.Object
  System.Attribute
    System.ComponentModel.BindableAttribute

Namespace:  System.ComponentModel
Assembly:  System (in System.dll)

Syntax

'Declaration
<AttributeUsageAttribute(AttributeTargets.All)> _
Public NotInheritable Class BindableAttribute _
    Inherits Attribute
[AttributeUsageAttribute(AttributeTargets.All)]
public sealed class BindableAttribute : Attribute

The BindableAttribute type exposes the following members.

Constructors

  Name Description
Public method BindableAttribute(BindableSupport) Initializes a new instance of the BindableAttribute class with one of the BindableSupport values.
Public method BindableAttribute(Boolean) Initializes a new instance of the BindableAttribute class with a Boolean value.
Public method BindableAttribute(BindableSupport, BindingDirection) Initializes a new instance of the BindableAttribute class.
Public method BindableAttribute(Boolean, BindingDirection) Initializes a new instance of the BindableAttribute class.

Top

Properties

  Name Description
Public property Bindable Gets a value indicating that a property is typically used for binding.
Public property Direction Gets a value indicating the direction or directions of this property's data binding.

Top

Methods

  Name Description
Public method Equals Determines whether two BindableAttribute objects are equal. (Overrides Attribute.Equals(Object).)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Serves as a hash function for the BindableAttribute class. (Overrides Attribute.GetHashCode().)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public method Match When overridden in a derived class, returns a value that indicates whether this instance equals a specified object. (Inherited from Attribute.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)

Top

Fields

  Name Description
Public fieldStatic member Default Specifies the default value for the BindableAttribute, which is No. This field is read-only.
Public fieldStatic member No Specifies that a property is not typically used for binding. This field is read-only.
Public fieldStatic member Yes Specifies that a property is typically used for binding. This field is read-only.

Top

Remarks

You can specify this attribute for multiple members, typically properties, on a control.

If a property has been marked with the BindableAttribute set to true, then a property change notification should be raised for that property. This means that if the Bindable property is Yes, then two-way data binding is supported. If Bindable is No, you can still bind to the property, but it should not be shown in the default set of properties to bind to, because it might or might not raise a property change notification.

NoteNote:

When you mark a property with BindableAttribute set to true, the value of this attribute is set to the constant member Yes. For a property marked with the BindableAttribute set to false, the value is No. Therefore, to check the value of this attribute in your code, you must specify the attribute as BindableAttribute.Yes or BindableAttribute.No.

Caution noteCaution:

You can use this attribute at design time only. Nothing prevents you from binding to any property during run time.

Examples

The following code example marks a property as appropriate to bind data to.

<Bindable(True)> _
Public Property MyProperty() As Integer
    Get
        ' Insert code here.
        Return 0
    End Get
    Set(ByVal value As Integer)
        ' Insert code here.
    End Set
End Property

Private Sub button1_Click(ByVal sender As Object, ByVal e As RoutedEventArgs)

End Sub
[Bindable(true)]
public int MyProperty
{
    get
    {
        // Insert code here.
        return 0;
    }
    set
    {
        // Insert code here.
    }
}

private void button1_Click(object sender, RoutedEventArgs e)
{

}

Version Information

Silverlight

Supported in: 5, 4

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.