Domanda

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.

È stato utile?

Soluzione

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)

Altri suggerimenti

Also you can use :

StyleServices.GetStyleColor(scWindow)
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top