Winforms control to display a scrollable list
I'm writing a wi-fi net detector and I would like to list the results in a list similar to the one Windows开发者_JAVA技巧 uses for displaying networks. What control should I use?
And by the way, is there a winforms equivalent of this? I've also seen similar diagrams for GTK and Cocoa. That would be helpful for Winforms.
I would say your best best would be a ListBox control. It will allow you to scroll, you can permit single select or multi-select, and a number of other things.
As for a visual guide to all of the Winform controls, I don't know of any site that does that directly. The closest thing that I know of is a list of all of the controls that has a picture of each when you click on it (as well as how to work with it). Here is the link:
http://www.java2s.com/Tutorial/CSharp/0460_GUI-Windows-Forms/Catalog0460_GUI-Windows-Forms.htm
精彩评论