Where is sorting in TreeView Windows Forms control?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello!

I's only TreeView.Sort() member function. No TreeView.Sorted property. But
in MSDN doc the property is listed.
WTF?

Thanx in advance.
Dan.
 
Well, the property DOES exist, but it is not visible for either intellisense
or the designer. This is due to the EditorBrowsable attribute which is set to
Never. Very odd. You can simply just use it, just don't rely on intellisense!

So:

treeView1.Sorted = true;

.... will simply work.

I have filed this bug (which I assume it is) on the product support pages.
Here's the link:

http://lab.msdn.microsoft.com/Produ...edbackid=09cb6015-716b-4b1e-b322-22329e0fdbb4

You can track this bug and vote on it. The more voters, the sooner Microsoft
will respond. So please do :).

Regards,
Jelle
 
Back
Top