是否可以在 Silverlight 中将渐变应用于背景图像?
我想对我的图像应用一些渐变,如何实现?
谢谢
I want to apply some gradient to my image how can I achieve that?
Thanx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想对我的图像应用一些渐变,如何实现?
谢谢
I want to apply some gradient to my image how can I achieve that?
Thanx
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
在渐变中,您可以使用一种或多种颜色。使用 VS2010 或表达式混合可以非常轻松地设置渐变。以下是蓝白二色渐变的示例代码。
In the gradient you can use one or more colours. Any it is very easy to set the gradient using either VS2010 or expression blend. The following is the sample code of a two-colour gradient with blue and white.
您可以将图像托管在边框内,将渐变应用于边框背景:
这假设您的图像有一些不透明区域,这些区域将在其下方显示渐变。
You could host your image within a Border, applying the gradient to the border background:
This assumes that your image has some opaque regions which will show the gradient beneath it.