How to add a TextBlock to an Ellipse in WPF/Silverlight?
Use a Grid, place the Ellipse followed by the TextBlock in the Grid.
Grid
Ellipse
TextBlock
<Grid> <Ellipse ... /> <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" /> </Grid>