How to Create Circular/Ellipse Profile Picture in Windows Phone 8/8.1 Universal Apps

So To Create this , Just Copy Code And Paste in Required Page, Just Change the Source of Image as per your location of images.
  1. <Grid>  
  2.     <Grid.RowDefinitions>  
  3.         <RowDefinition Height="800" />  
  4.         <RowDefinition Height="Auto" />  
  5.     </Grid.RowDefinitions>  
  6.     <Grid Background="#1E1E1E">  
  7.         <Ellipse Height="200" Width="200" Margin="0,0,0,0">  
  8.             <Ellipse.Fill>  
  9.                 <ImageBrush ImageSource="Me.jpg" Stretch="UniformToFill" />  
  10.             </Ellipse.Fill>  
  11.         </Ellipse>  
  12.     </Grid>  
  13. </Grid>    
It's Done
 
Comment Below For any doubts.