What is Property Value Inheritance – XAML ?
When you created a new Windows Phone App , you would have noticed the following in the MainPage.XAML's PhoneApplicationPage element .
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
The above sample code is an example of the Property Value Inheritance which indicates the default appearance of the child elements of the page Read More → 