[.net] Treeview prevent Node collapse (weird problem) - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T22:23:39Zhttp://stackoverflow.com/feeds/question/1043929http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1043929/-net-treeview-prevent-node-collapse-weird-problem1[.net] Treeview prevent Node collapse (weird problem)cssnoob2009-06-25T13:28:39Z2009-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#12069320Answer by Lokesh for [.net] Treeview prevent Node collapse (weird problem)Lokesh2009-07-30T14:24:32Z2009-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#12169540Answer by logicnp for [.net] Treeview prevent Node collapse (weird problem)logicnp2009-08-01T16:31:18Z2009-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#12300470Answer by Eric J. for [.net] Treeview prevent Node collapse (weird problem)Eric J.2009-08-04T21:37:28Z2009-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>