Henry Olive 5 Posted October 15, 2022 (edited) Good Day Delphi 10.3 Is it possible to load a PNG directly into the Speed Button Glyph ? Thank You Edited October 15, 2022 by Henry Olive Share this post Link to post
Lajos Juhász 293 Posted October 15, 2022 You cannot assign png to glyph, but you can assign a TImageList or TVirtualImageList to the images property and using imageindex/imagename access the png picture. In order to support high dpi you should consider using TImageCollection and TVirtualImageList (where you can use the imagename property instead of imageindex). (I don't have Delphi 10.3 to test this.) Share this post Link to post