BindablePropertyKey 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
BindableProperty 的祕密金鑰,以受限制的寫入權限來實作 BindableProperty。
public sealed class BindablePropertyKey
type BindablePropertyKey = class
- 繼承
-
System.ObjectBindablePropertyKey
備註
下列範例示範如何建立 BindablePropertyKey。 讀取存取權為 時, internal
寫入存取權為 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); }
}
}
屬性
BindableProperty |
取得 BindableProperty。 |