Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   GUI-Design mit VCL / FireMonkey / Common Controls (https://www.delphipraxis.net/18-gui-design-mit-vcl-firemonkey-common-controls/)
-   -   Problem mit TMS Smooth Controls "AdvSmoothImageListBox" (https://www.delphipraxis.net/195704-problem-mit-tms-smooth-controls-advsmoothimagelistbox.html)

weinberger 19. Mär 2018 13:08

Problem mit TMS Smooth Controls "AdvSmoothImageListBox"
 
Hallo zusammen,

wahrscheinlich stelle ich mich nur dumm an.
Wie kann ich bei der AdvSmoothImageListBox aus den TMS Smooth Controls auf markierte Images zugreifen wenn Multiselect true ist?

Vielen Dank schon mal

Gollum 19. Mär 2018 13:35

AW: Problem mit TMS Smooth Controls "AdvSmoothImageListBox"
 
Hallo,

mit der Eigenschaft Selected der List-Items.

Delphi-Quellcode:
var i:Integer;
begin
  for i:=0 to MyImageListeBox.Items.Count-1 do
    if MyImageListeBox.Items[i].Selected then
      ShowMessage(MyImageListBox.Items[i].Location);
end;

weinberger 19. Mär 2018 14:00

AW: Problem mit TMS Smooth Controls "AdvSmoothImageListBox"
 
Danke :-D:-D


Alle Zeitangaben in WEZ +1. Es ist jetzt 22:35 Uhr.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz