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> 

 

posted @ 2011-11-16 10:59  therockthe  阅读(289)  评论(0)    收藏  举报