Hello, Andy
I’m watching screenshots, but can’t understand a problem..
White color is defined in the skin by the ASkinEditor tool.
Color of elements in the custom skin may be changed to any other.
Sorry for a long answer here.
The ‘EDIT’ skin section used for drawing of all edit fields, memos, listboxes, etc.. Try to change this section, plz.
Color in a skin section may be changed in the skin and in the run-time too. Write me which way do you need.
Colors may be changed in whole section or in any custom controls.
Hello
Here is a code for changing of color in the ‘EDIT’ section at run-time:
var
gd: TsGeneralData;
SectionIndex: integer;
begin
SectionIndex := sSkinManager1.SkinCommonInfo.Sections[ssEdit]; // Receive index from array of indexes
sSkinManager1.CommonSkinData.gd[SectionIndex].Props[0 {normal state}].Color := clYellow;
sSkinManager1.RepaintForms; // Call it if controls should be refreshed immediately
end;