Silverlight Text Label
The Silverlight Text Label control has been retired from the Liquid Control Library 4.9 onwwards. To replicate the functionality of the label in your own Silverlight applications you can use a TextBlock and hook onto the left mouse button click event and call the Focus() method of the control you wish to pass focus onto.
Your Comments and Questions Answered
You are not logged in. You need to login to post new messages, if you do not have a login you can register for free!
dan
Aug, 12 2008 - 22:39
Hi,
Although not a Liquid Controls query, I think this could be done using a Grid like the following:
<Grid Width="100" Height="50">
<Image Source="someimage.png" />
<TextBlock Text="Some Text" VerticalAlignment="Center" HorizontalAlignment="Center" />
</Grid>
niravlvyas
Aug, 12 2008 - 00:19
hi i am using textblock i want to assign a image as background image for the block.But dont knw how can it be done thru Silverlight.can u please tell me syntax.