WPF 如何禁用混合模式?在控件顶部绘图会像叠加模式一样混合颜色
我试图在现有控件的顶部画一条线,但它将颜色混合在一起。我找到的只是有关如何制作精美混合模式的教程,但我想要的只是在控件上绘制一条纯色线,但即使是 SolidColorBrush 的行为也不像我想要的那样。
I'm trying to draw a line on top of an existing control but it blends the colors together. All I find is tutorial on how to make fancy blending mode but all I want is draw a solid color line over my controls but even the solidColorBrush doesn't behave like I want.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否在画笔上设置了不透明度设置?
编辑
我稍微看了一下,显然,当您通过控件继承时,不透明度似乎是累积的。
请参阅此链接,他在其中将不透明度应用于两个按钮内容和按钮本身。您可以按照您发布的 SO 链接的建议来删除父对象上的不透明度吗?
Are you setting an Opacity setting on your brushes?
Edit
I had a bit of a look and apparently Opacity seems to be cumulative as you inherit through controls.
See this link, where he applies opacity to both the button content and the button itself. Can you follow the advice of the SO link you posted to remove the opacity on a parent object?