WPF 不透明蒙版
我可以使用 LinearGradientBrush 在 WPF 中创建不透明蒙版,如下所示。
<LinearGradientBrush x:Key="SplitterOpactityMask" StartPoint="0,0" EndPoint="1,0">
<GradientStop Color="#FFFFFFFF" Offset="0"/>
<GradientStop Color="#00FFFFFF" Offset="1"/>
</LinearGradientBrush>
这为我提供了一个在画笔范围内从零透明度开始到完全透明的画笔。
但是,使用哪些十六进制代码来提供不同级别的透明度?例如,我想以 75% 的透明度开始画笔,然后转到画笔范围的 100%。
I can create an opacity mask in WPF using a LinearGradientBrush as follows
<LinearGradientBrush x:Key="SplitterOpactityMask" StartPoint="0,0" EndPoint="1,0">
<GradientStop Color="#FFFFFFFF" Offset="0"/>
<GradientStop Color="#00FFFFFF" Offset="1"/>
</LinearGradientBrush>
This gives me a brush starting from zero transparency to full transparency over the range of brush.
However what hex codes are used to give different levels of transparency? For example I want to start my brush at 75% transparency and then go to 100% of the range of the brush.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如记录的,OpacityMask 使用来自指定的刷子。如果您询问为颜色指定的十六进制的哪一部分代表 alpha,那么它是 8 十六进制颜色代码的前 2 个十六进制字符(即 #aarrggbb)。所以 FF 是完全不透明的,00 是完全透明的。因此 75% 透明度(即 25% 不透明)将为 0x40 (255 * .25)。
As documented the OpacityMask uses the alpha channel from the specified brush. If you're asking which part of the hex you are specifying for the color represents the alpha then it is the 1st 2 hex characters of the 8 hex color code (i.e. #aarrggbb). So FF is fully opaque and 00 is fully transparent. So 75% transparency (i.e. 25% opaque) would be 0x40 (255 * .25).