Skip to content

ChangeIconsColor

Carlo Barazzetta edited this page Nov 29, 2019 · 5 revisions

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);

https://github.com/EtheaDev/IconFontsImageList/blob/master/Demo/Images/DemoChangeStyle.gif

Clone this wiki locally