Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
Xaml provides the ability to create a special type of value known as a markup extension. Whenever you use data-binding, you are taking advantage of this feature. Take a look at this Xaml snippet:
<Slider
Minimum="1" Maximum="100" Height="20"
HorizontalAlignment="Stretch"
Value="{Binding Path=MyNumber,Mode=TwoWay}" x:Name="Slider"/>