Some components paint their color with the Color property setting even when vcl,styles are used. So when using a Metro dark style (nearly black) and a components color is set to clWindow the components color does not match the style. Is there a way to get the forms background color when using a vcl.style so that the color property of a component can be set to match the forms styled background color?

The color can be obtained by loading the style in the style designer, but I'd like to get the color value at runtime.

有帮助吗?

解决方案

You can use the GetSystemColor function passing the proper system color constant to get

for example to get the background color of a TEdit component use

TStyleManager.ActiveStyle.GetSystemColor(clWindow)

And to get the default background color of a form try

TStyleManager.ActiveStyle.GetSystemColor(clBtnFace)

其他提示

Also you can use :

StyleServices.GetStyleColor(scWindow)
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top