Display Simple Text with TextBlock and set font, alignment : Font « Windows Presentation Foundation « VB.Net






Display Simple Text with TextBlock and set font, alignment

Display Simple Text with TextBlock and set font, alignment
      

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="WPF" Height="100" Width="300">
    <Grid>
        <TextBlock FontFamily="Tahoma, Arial"
                   FontSize="20"
                   FontStyle="Italic"
                   FontWeight="Light"
                   HorizontalAlignment="Center"
                   TextAlignment="Right"
                   TextDecorations="Underline, Strikethrough"
                   TextWrapping="Wrap"
                   VerticalAlignment="Center">
            this is a test
        </TextBlock>
    </Grid>
</Window>

   
    
    
    
    
    
  








Related examples in the same category

1.FontSize unitsFontSize units
2.Change a Control's Font Weight on Mouse OverChange a Control's Font Weight on Mouse Over
3.Section Font StyleSection Font Style
4.Adding TextBlock to StackPanel with different font sizeAdding TextBlock to StackPanel with different font size
5.Using text format property aliases
6.Programmatically change the FontFamily property of a TextBlock element.Programmatically change the FontFamily property of a TextBlock element.
7.Font Properties SampleFont Properties Sample