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를 가져옵니다. |