BindablePropertyKey Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The secret key to a BindableProperty, used to implement a BindableProperty with restricted write access.
public sealed class BindablePropertyKey
type BindablePropertyKey = class
- Inheritance
-
System.ObjectBindablePropertyKey
Remarks
The following example shows the creation of a BindablePropertyKey. Write access is internal
while read access is public
.
class Bindable : BindableObject
{
internal static readonly BindablePropertyKey FooPropertyKey =
BindableProperty.CreateReadOnly<Bindable, string> (w => w.Foo, default(string));
public static readonly BindableProperty FooProperty = FooPropertyKey.BindableProperty;
public string Foo {
get { return (string)GetValue (FooProperty); }
internal set { SetValue (FooPropertyKey, value); }
}
}
Properties
BindableProperty |
Gets the BindableProperty. |