silverlight xaml c# 中只有两个圆角的图像
如何在 xaml 中显示只有两个圆角的图像?
<Image x:Name="Image" Height="200" Width="250" Source="image.jpg" Stretch="Fill">
<Image.Clip>
<RectangleGeometry RadiusX="20" RadiusY="20" Rect="0,0,250,200"/>
</Image.Clip>
</Image>
我只想要两个底角圆。
谢谢
How I can display images in xaml with only two rounded corners?
<Image x:Name="Image" Height="200" Width="250" Source="image.jpg" Stretch="Fill">
<Image.Clip>
<RectangleGeometry RadiusX="20" RadiusY="20" Rect="0,0,250,200"/>
</Image.Clip>
</Image>
I want only two bottom corner round.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用边框 为您的图像,并指定 CornerRadius 属性
并使用图像作为背景画笔
这是此 xaml 的示例。只需更改 ImageSource
Use Border for your Image, and specify CornerRadius property
And use image as background brush
Here is example with this xaml. Just change ImageSource