Using datagridview

R

Ray

Hi,

I've just started getting into C# programming and am wanting to
develop a small gui that displays a table of files along with their
sizes . I am wondering if using the datagridview control is the way
to go or if it is overkill for what I want? (is there something else
I should be looking at?)

Cheers
 
G

Guest

If the application is not getting any data from a database or some other
source, there is no reason to use a datagridview control. The simplest
solution in your case is to use a listbox with two columns.

Adrian.
 
I

Ignacio Machin \( .NET/ C# MVP \)

Hi,

Ray said:
Hi,

I've just started getting into C# programming and am wanting to
develop a small gui that displays a table of files along with their
sizes . I am wondering if using the datagridview control is the way
to go or if it is overkill for what I want? (is there something else
I should be looking at?)

Take look at ListView, IMO it's lighter and easier to use than Datagridview
 

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

Top