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

元气小坏坏 提交于 2019-12-11 08:45:04

问题


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.


回答1:


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.




回答2:


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



来源:https://stackoverflow.com/questions/462232/what-is-the-best-vb-net-control-standard-custom-for-displaying-list-of-files

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!