BindablePropertyKey Kelas
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Kunci rahasia ke BindableProperty, digunakan untuk mengimplementasikan BindableProperty dengan akses tulis terbatas.
public sealed class BindablePropertyKey
type BindablePropertyKey = class
- Warisan
-
System.ObjectBindablePropertyKey
Keterangan
Contoh berikut menunjukkan pembuatan BindablePropertyKey. Akses tulis adalah internal
saat akses baca adalah 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); }
}
}
Properti
BindableProperty |
Mendapatkan BindableProperty. |