Hello,
with the component ThumbControl,
when I click on a thumbnail, I want to load another image (test.jpg) INSTEAD of the image I've clicked on.
For example if I click on the 3rd image of the 5th row, I want test.jpg to appear in that exact thumb.
I can get the exact thumb with:
procedure TForm1.ThumbControl1SelectItem(Sender: TObject; Item: TThreadedImage);
begin
Label1.Caption := ExtractFileName(ThumbControl1.ImageLoaderManager.ActiveItem.URL);
if Item <> nil then
begin
???
end;
end;
But I can't figure out the code...
what I would like to create is, with mouse enter and mouse leave, a cool animation effect and load a different 2nd thumbs of all my images
many thanks