圆形图像Windows Phone 8.1

时间:2015-11-11 18:10:00

标签: c# xaml windows-phone-8.1

我希望将图片显示在圈子中,就像个人资料图片一样Navigation Drawer Layout我正在使用此代码创建圆形布局。

 <Grid x:Name="ListFragment" >
     <StackPanel Height="Auto" VerticalAlignment="Top" Background="White" >
         <StackPanel Height="50" VerticalAlignment="Top" Background="OrangeRed" />
         <Ellipse Margin="0,-50,0,0" Height="100" Stroke="Black" VerticalAlignment="Center" Width="100">
             <Ellipse.Fill>
                 <ImageBrush Stretch="Uniform" ImageSource="Assets/admin.jpg"/>
             </Ellipse.Fill>
         </Ellipse>
     </StackPanel>
 </Grid>

Visual Studio 2013 Designer显示完美的用户界面,但是当我在手机应用程序上运行应用程序时,初始化抽屉布局时崩溃了。出了什么问题?请帮帮我。

0 个答案:

没有答案