[.net] Treeview prevent Node collapse (weird problem) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T22:23:39Z http://stackoverflow.com/feeds/question/1043929 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1043929/-net-treeview-prevent-node-collapse-weird-problem 1 [.net] Treeview prevent Node collapse (weird problem) cssnoob 2009-06-25T13:28:39Z 2009-08-04T21:37:28Z <p>Hey guyz!</p> <p>I have a .net 2.0 C# Project. I have a Treeview with 2 Nodes, each of them has many child nodes. When you click on a child node, a PDF is displayed in a webbrowser control depending on the properties of the node. Fine, but the problem is that when both Nodes are expanded, and I click on a child node, the other node gets collapsed! I don't have any code that collapses any node of the treeview, but somehow it happens! I also had a look at the BeforeCollapse Event, but somehow it doesn't fire, alltough the other node collapses!</p> <p>Can anyone imagine why this happens? I would be very grateful if anyone can teach me how to prevent this happening!</p> <p>Thank you very much!</p> http://stackoverflow.com/questions/1043929/net-treeview-prevent-node-collapse-weird-problem/1206932#1206932 0 Answer by Lokesh for [.net] Treeview prevent Node collapse (weird problem) Lokesh 2009-07-30T14:24:32Z 2009-07-30T14:24:32Z <p>Hi,</p> <p>I am facing the same issue. If you have any solution to this problem then please reply.</p> http://stackoverflow.com/questions/1043929/net-treeview-prevent-node-collapse-weird-problem/1216954#1216954 0 Answer by logicnp for [.net] Treeview prevent Node collapse (weird problem) logicnp 2009-08-01T16:31:18Z 2009-08-01T16:31:18Z <p>This happens if the TVS_SINGLEEXPAND style is ON for the treeview. Try setting the HotTracking property to false.</p> http://stackoverflow.com/questions/1043929/net-treeview-prevent-node-collapse-weird-problem/1230047#1230047 0 Answer by Eric J. for [.net] Treeview prevent Node collapse (weird problem) Eric J. 2009-08-04T21:37:28Z 2009-08-04T21:37:28Z <p>I stopped using the WinForms TreeView some time ago because of it's limits and quirks. </p> <p>My favorite replacement is the open-source TreeViewAdv:</p> <p><a href="http://sourceforge.net/projects/treeviewadv/" rel="nofollow">TreeViewAdv on Source Forge</a></p> <p><a href="http://www.codeproject.com/KB/tree/treeviewadv.aspx" rel="nofollow">TreeViewAdv on CodeProject</a></p>