#334 – Specifying Values for FontFamily
July 4, 2011 Leave a comment
The FontFamily property of a Control indicates what typeface the control’s text should be rendered in. The value of the property can be the name of any of the fonts currently installed on the system where a WPF application is running. In Windows 7, there are a number of fonts installed by default that can be assumed to always be present.
<TextBlock Margin="20,20,20,0" FontSize="18" FontFamily="Candara" TextWrapping="Wrap"> Freedom is never voluntarily given by the oppressor; it must be demanded by the oppressed.<LineBreak/> --Martin Luther King, Jr. </TextBlock> <TextBlock Margin="20,40,20,0" FontSize="18" FontFamily="Constantia" TextWrapping="Wrap"> Freedom is never dear at any price. It is the breath of life. What would a man not pay for living?<LineBreak/> --Mohandas Gandhi </TextBlock>