I'm new to the WinForms control toolbox, so I'm looking to get suggestions on which control I should use for the following simple situation:
I want to have an area on my form that shows a list of the files in a particular directory.
My first quick and dirty inclination is to put a textbox on the form and populate it line-by-line using Directory.GetFiles() - but I know there has to be a more appropriate control. Maybe gridview?
(.NET 3.5)