MFC 工具栏图标的颜色深度更高?
我想知道如何在 MFC 中制作一个使用 24 位或 256 色位图而不是可怕的 16 色位图的工具栏。
谁能指出我一些简单代码的方向?
谢谢
I was wondering how to make a toolbar in MFC that used 24bit or 256 colour bitmaps rather than the horrible 16 colour ones.
Can anyone point me in the direction of some simple code?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
发生这种情况的原因是 MFC CToolbar 类在内部使用了一个图像列表,该列表被初始化为仅使用 16 种颜色。 解决方案是创建我们自己的图像列表并告诉工具栏使用它。 我知道这适用于 256 色,但我还没有使用更高的位深度对其进行测试:
首先,从资源加载 256 色位图:
接下来,创建 256 色图像列表并将我们的位图添加到其中:
最后,我们需要告诉工具栏使用新的图像列表:
也有可能VS2008中的新MFC版本已经解决了这个问题,因为我知道许多UI元素已经更新。 我还没有真正尝试过使用它,所以我不能确定。
The reason this happens is that the MFC CToolbar class uses an image list internally that is initialised to use 16 colours only. The solution is to create our own image list and tell the toolbar to use that instead. I know this will work for 256-colours, but I haven't tested it with higher bit-depths:
First, load a 256-colour bitmap from a resource:
Next, create a 256-colour image list and add our bitmap to it:
Finally, we need to tell the toolbar to use the new image list:
It's also possible that the new MFC version in VS2008 may have solved this problem as I know that many of the UI elements have been updated. I haven't actually tried using it yet so I can't be certain.
该解决方案完美无缺,您只需要稍微修改一下即可:
The solution worked Flawless, you only need to fix it a little: