创建圆形图像Xaml

前端之家收集整理的这篇文章主要介绍了创建圆形图像Xaml前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Windows Phone 8中,我想将图像放在一个圆圈中.是否有一个像网格一样的圆形容器?我知道有椭圆位,它不是一个容器
我就是这样做的.
<Ellipse Width="100"
         Height="100">
    <Ellipse.Fill>
        <ImageBrush>
            <ImageBrush.ImageSource>
                <BitmapImage UriSource="/YourImage.png" />
            </ImageBrush.ImageSource>
        </ImageBrush>
    </Ellipse.Fill>
</Ellipse>

作为最佳实践,请考虑将DecodePixelWidth和DecodePixelHeight设置为与椭圆相同的大小.

原文链接:https://www.f2er.com/windows/371955.html

猜你在找的Windows相关文章