1 | | Sometimes it does not display the content properly in the details pane. I had this behavior on two different computers so far. |
2 | | |
3 | | It seems to occur on release builds more often than on debug builds. Nevertheless I could reproduce this on a debug build: |
4 | | 1. You need to start with the debugger attached |
5 | | 2. Put a breakpoint at the beginning of treeView_!MouseDown and treeView_!NodeMouseClick. |
6 | | 3. When you click on a node in the view the mouse down breakpoint will be hit |
7 | | 4. Continue with F5 and you'll see that the node mouse click event will not be called. |
8 | | 5. You can check in the view that the details pane is empty |
9 | | 6. If you remove the breakpoint in treeView_!MouseDown it works as expected. |
10 | | |
11 | | I have no explanation for this kind of behavior. The two events seem to be in competition to each other. I would advise to put all functionality in mouse down. |
| 1 | When the user clicks on the icon on one of the nodes, it changes to display the node as selected, but does not display the content in the details pane. |