softtouch 9 Posted November 27, 2023 Delphi 12: Does anybody know how the customglyphimages is supposed to work with TRzCheckBox of the Raize Components? I set the imagelist, which hold various 16x16 images. In the designer, they are also visible instead of the default checkmarks, but when I run the program, it only shows the normal checkboxes instead. Share this post Link to post
Serge_G 87 Posted November 28, 2023 9 hours ago, softtouch said: when I run the program, it only shows the normal checkboxes instead. Got same issue. As workaround, I force UseCustomGlyphs to true at runtime. procedure TForm1.FormCreate(Sender: TObject); begin for var ctrl in GetControls() do begin if ctrl is TRzCheckBox then TRZCheckBox(ctrl).UseCustomGlyphs:=true; end; end; Share this post Link to post
softtouch 9 Posted November 29, 2023 The issue I see is that when the image sin the imagelist are set to 16x16, they will not appear in the checkbox. Any size different that that will show the images. Of course, everything more than 16x16 will cur them and you see only a part of them... so it must be a bug that just the needed 16x16 images are not displayed. Share this post Link to post