Mega Code Archive

 
Categories / VB.Net Tutorial / WPF
 

Text decorations

<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"       xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"       HorizontalAlignment="Center" VerticalAlignment="Center"       TextElement.FontFamily="Palatino Linotype">     <TextBlock FontSize="1cm" TextWrapping="Wrap" TextAlignment="Center">       <Span TextDecorations="Underline,Overline,Baseline,Strikethrough">Full house</Span>     </TextBlock> </Window>