I have a flickering TreeView and I know it's a common problem. The thing is the TreeView has no events.
Yes I understand that when I add the nodes recursively from a XmlDocument it flickers a little and that's normal. Mine flickers even after everything is loaded. As soon as my mouse is over a node or if I click on a node. I checked :
- All the properties that could cause this (
DrawMode,ShowToolTipetc..) - All events to make sure there are none. (I have a drag and drop event but I commented it too make sure it's not the problem and it doesn't change anything).
- I used
BeginUpdateandEndUpdatewhile theTreeViewwas updating. (Now it's populated and there is no process involving theTreeViewbut it still flickers.
Am I missing something obvious ?