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 HorizontalAlignment="Center" VerticalAlignment="Center" />
</Grid>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With