线性渐变画笔淡入淡出 WPF
我有一个画笔,可以为标题的背景着色。我喜欢画笔的外观,但希望它在底部三分之一处褪色为透明。有什么想法如何做到这一点?
<LinearGradientBrush
x:Key="HeaderBackgroundBrush"
EndPoint=".5,1"
StartPoint="1,0">
<GradientStop Color="#006699" Offset="1"/>
<GradientStop Color="#80A8CC" Offset="0.5"/>
</LinearGradientBrush>
I have a brush that colors the background of a header. I like the way the brush looks but would like it to fade to transparent in the bottom third. Any ideas how to do this?
<LinearGradientBrush
x:Key="HeaderBackgroundBrush"
EndPoint=".5,1"
StartPoint="1,0">
<GradientStop Color="#006699" Offset="1"/>
<GradientStop Color="#80A8CC" Offset="0.5"/>
</LinearGradientBrush>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不确定您是否可以通过仅在画笔级别工作来做到这一点,但是您可以将
OpacityMask
应用于您的控件:I'm not sure you can do it by working only at the brush level, however you could apply an
OpacityMask
to your control:只需将颜色指定为 ARGB(包括 alpha),如下所示:#AARRGGBB。然后将最后一个渐变停止点的 alpha 值设置为 0(完全透明;在您的情况下为#0080A8CC)。 HTH。
just specify the colors as ARGB (including alpha) like this: #AARRGGBB. Then give your last gradient stop an alpha value of 0 (fully transparent; in your case #0080A8CC). HTH.
如果您想在 C# 中执行此操作,请使用以下代码。这会给你一个浅粉色/鲑鱼色到完全透明的刷子。更改 #FF 和 #00 以获得不同的透明度渐变。
If you want to do it in C# use the following code. This will give you a light pink/salmon to fully transparent brush. Change the #FF and #00 to get a different transparency gradient.