I have created a custom tree view control in .NET to display directories.
What I want is for the nodes to display the folder name and also the date last modified.
I can do this by just setting the text to include this but then when I try and get child nodes using full path it also includes the date and so the folder is not found.
So I tried overriding OnDrawNode to display the date as it is stored in the tag property of the node. However when I run the app it is never called.
Is there any reason for this?