-
Notifications
You must be signed in to change notification settings - Fork 57
ChangeIconsColor
Carlo Barazzetta edited this page Nov 29, 2019
·
5 revisions
Opening the Demo project you can test how to Change Icons Color.
Using the GroupBox at top-left of the Main form, you can see a tipical usage of this component: when a user change the appereance (Style) of the application, you can change the color of all the Icons, with a single line of code:
if LStyleName = 'Windows' then
IconFontsImageList.UpdateIconsAttributes(clBlack, clBtnFace)
else if LStyleName = 'Windows10' then
IconFontsImageList.UpdateIconsAttributes(clBlack, clWhite)
else if LStyleName = 'Windows10 SlateGray' then
IconFontsImageList.UpdateIconsAttributes(clWhite, clBlack)
else if LStyleName = 'Windows10 Blue' then
IconFontsImageList.UpdateIconsAttributes(clBlue, clGray)
else if LStyleName = 'Windows10 Dark' then
IconFontsImageList.UpdateIconsAttributes(clSilver, clBlack)
else if LStyleName = 'Windows10 Green' then
IconFontsImageList.UpdateIconsAttributes(clOlive, clGreen)
else if LStyleName = 'Windows10 Purple' then
IconFontsImageList.UpdateIconsAttributes(clRed, clPurple);