My Question is how to Refresh VirtualTreeView Images...
As balazs suggested in my previous question to use the OnInitNode Event
to Load The Icon and store the index of the added icon in the record
i've already done that but the OnInitNode Event
seems doesn't Triggered when calling
the Invalidate method nor RepaintNode so i couldn't refresh the Images on VST i know that the VST ask for data on demand so i fill my data structure
wich named FileInfo in my situation and call Invalidate
all text In VST Updated but not Images..
thank's...
GetImageIndexevent – S.FATEH Jul 14 '12 at 11:47InvalidateNodenot working in my case.. – S.FATEH Jul 14 '12 at 12:04OnInitNodeis not expected to be called multiple times. It is an initialization routine. So expect it to be called once only. If you have to load a new during the lifetime of your tree view then do this. When you detect that you need to change the icon, load the new icon and store the new image index in your node's data. Then invalidate the node and in due course it will receive the GetImageIndex event (or whatever it is called). At that point return the new image index. – David Heffernan Jul 14 '12 at 13:05TheNode(the node whose file extension has been changed) get it's data record, add the icon (if you need to), update theFileIcoIndexand callInvalidateNode(TheNode);. – TLama Jul 14 '12 at 13:44