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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top