Ugly “disabled” images of TMainMenu

 ̄綄美尐妖づ 提交于 2019-11-28 19:20:00

问题


Delphi 2010, Win32 VCL. I need to create a main menu for my application with the most standard look. TMainMenu looks nice in all Windows versions, the only bad thing is when it displaying images for items with Enabled=False.

Delphi has some strange method for building that disabled images (b/w extrusion with bevels, for me it looks like spew). I want to make a patch for that procedure in VCL sources and let menu to select disabled images from the same TImageList, but I can't find it.

Is it exists at all or it is some standard windows API call? Do you know where is that procedure located?

Sure OwnerDraw style can fix all this but I want a bit faster solution.


回答1:


There's a great post on Galfar's Lair blog which describes the problem, and has code for a workaround, overriding the TImageList DoDraw method.

Here's the pic (linked) showing the 'before' and 'after'.

I think this relates to pretty much all Delphi versions.




回答2:


If you can provide your images as PNG you can use TPngImageList from PngComponents. It has different options to make a blended or grayscaled disabled image. The PNG format allows you to make use of alphablending.



来源:https://stackoverflow.com/questions/3117021/ugly-disabled-images-of-tmainmenu

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!