Add textblock to ellipse in WPF

ellipse, silverlight, textblock, wpf

Solution

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

<Grid>
   <Ellipse ...  />
   <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" />
</Grid>

Problem

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

Original source