Mega Code Archive

 
Categories / VB.Net / WPF
 

Semi-Transparent TextBlock

<Window x:Class="ClassicControls.Transparency"     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"     Background="White" Title="Transparency" Height="385" Width="450">     <StackPanel Margin="5">         <TextBlock Width="100" Height="200" Foreground="#75000000"  TextAlignment="Center"                     FontSize="30"                     FontWeight="Bold" TextWrapping="Wrap" >Semi-Transparent Layers</TextBlock>     </StackPanel> </Window>