1. 概述
依賴(lài)屬性(DependencyProperty)是UWP的核心概念,它是有DependencyObject提供的一種特殊的屬性。由于UWP的幾乎所有UI元素都是集成于DependencyObject的FramewordElement,并且這些UI元素的幾乎所有屬性及它們出現(xiàn)在XAML中的幾乎所有屬性都是依賴(lài)屬性,所以可以說(shuō)依賴(lài)屬性是專(zhuān)門(mén)為UI設(shè)計(jì)的屬性系統(tǒng)。
依賴(lài)屬性的定義:
/// <summary>/// 獲取或設(shè)置Title的值/// </summary> public string Title{ get { return (string)GetValue(TitleProperty); } set { SetValue(TitleProperty, value); }}/// <summary>/// 標(biāo)識(shí) Title 依賴(lài)屬性。/// </summary>public static readonly DependencyProperty TitleProperty = DependencyProperty.Register("Title", typeof(string), typeof(MyPage), new PropertyMetadata(string.Empty));