How to add a TextBlock to an Ellipse in WPF/Silverlight?
Asked
Active
Viewed 6,339 times
1 Answers
9
Use a Grid
, place the Ellipse
followed by the TextBlock
in the Grid
.
<Grid>
<Ellipse ... />
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" />
</Grid>

AnthonyWJones
- 187,081
- 35
- 232
- 306