Hallo,
ich möchte in DesktopAlert-Buttons Bilder einfügen - und kriege es nicht hin!
Die Buttons funktionieren, aber man sieht sie halt nur über mouse_over!
Vielleicht kann mir ja jemand helfen und sieht, wo es happert!
Delphi-Quellcode:
DA := TJVdesktopAlert.Create(self);
for j := 0 to ImageList1.Count - 1 do
begin
with DA.Buttons.Add do
begin
ImageIndex := ImageList1.Count;
tag := j;
OnClick := meine_procedure;
end;
end;