Basic Text in Silverlight
</TextBlock>
<TextBlock Text="Hello, World" FontSize="72">
<TextBlock.Foreground>
<SolidColorBrush Color="Red"/>
</TextBlock.Foreground>
</TextBlock>
<TextBlock.Foreground>
<LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
<GradientStop Color="Blue" Offset="0"/>
<GradientStop Color="Red" Offset="0.5"/>
<GradientStop Color="Green" Offset="1"/>
</LinearGradientBrush>
</TextBlock.Foreground>
</TextBlock>
<TextBlock Text="Hello, World" FontSize="72">
<TextBlock.Foreground>
<RadialGradientBrush>
<GradientStop Color="Blue" Offset="0"/>
<GradientStop Color="Red" Offset="0.5"/>
<GradientStop Color="Green" Offset="1"/>
</RadialGradientBrush>
</TextBlock.Foreground>
</TextBlock>
<TextBlock Text="Hello, World" FontSize="72">
<TextBlock.Foreground>
<VideoBrush SourceName="theSource" Stretch="UniformToFill"/>
</TextBlock.Foreground>
</TextBlock>