views:

499

answers:

1

How to add a TextBlock to an Ellipse in WPF/Silverlight?

+2  A: 

Use a Grid, place the Ellipse followed by the TextBlock in the Grid.

<Grid>
   <Ellipse ...  />
   <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" />
</Grid>
AnthonyWJones
Seems to work for me. Thanks!
Nyla Pareska