user57175
user57175

Reputation: 3434

What is the best VB.NET control (standard/custom) for displaying list of files?

I'm developing a Desktop Search Engine in VB.NET and I'm looking for a powerful, flexible and feature-rich control for displaying the search results i.e. list of files.

Upvotes: 1

Views: 1429

Answers (2)

Matt Peterson
Matt Peterson

Reputation: 5749

The System.Windows.Forms.ListView control is probably most similar to what Windows itself uses to render lists of files and folders in Explorer.

Upvotes: 0

Jonathan Allen
Jonathan Allen

Reputation: 70307

If you are using WinForms, the standard is to use TreeView for folders a ListView for files/results.

If you aren't in a hurry, rolling your own using WPF might be interesting. It would be much more flexible, but also a lot more work.

Upvotes: 3

Related Questions