在Windows Phone 8中,我想将图像放在一个圆圈中.是否有一个像网格一样的圆形容器?我知道有椭圆位,它不是一个容器
我就是这样做的.
原文链接:https://www.f2er.com/windows/371955.html<Ellipse Width="100" Height="100"> <Ellipse.Fill> <ImageBrush> <ImageBrush.ImageSource> <BitmapImage UriSource="/YourImage.png" /> </ImageBrush.ImageSource> </ImageBrush> </Ellipse.Fill> </Ellipse>
作为最佳实践,请考虑将DecodePixelWidth和DecodePixelHeight设置为与椭圆相同的大小.