I'm just beginning to use silverlight and have a simple question. How do I make a <TextBlock> control database driven?
<Grid x:Name="LayoutRoot">
<TextBlock Width="400" Height="50" Foreground="Red" FontSize="20"
Text="I want this database driven" TextWrapping="Wrap">
<TextBlock.RenderTransform>
<RotateTransform CenterX="20" CenterY="50" />
</TextBlock.RenderTransform>
</TextBlock>
</Grid>
</UserControl>