Windows Phone ListBox圆形图像视图

时间:2013-12-05 16:17:19

标签: xaml c#-4.0 windows-phone-8

我的要求是我需要在圆形视图中显示带有一些图像的ListBox,如图像

enter image description here

我搜索更多,但我没有找到任何东西

1 个答案:

答案 0 :(得分:4)

在XAML中,您想使用Ellipse控件创建圆。然后给它一个ImageBrush填充。

<Ellipse>
    <Ellipse.Fill>
        <ImageBrush ImageSource="YourImage.png"/>
    </Ellipse.Fill>
</Ellipse>