Add textblock to ellipse in WPF
Use a Grid, place the Ellipse followed by the TextBlock in the Grid.
<Grid>
<Ellipse ... />
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" />
</Grid>
Use a Grid, place the Ellipse followed by the TextBlock in the Grid.
<Grid>
<Ellipse ... />
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" />
</Grid>