What is the best way to display multi-columned data in a grid format using C# WinForms?
Is it ListView or DataGridView?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
DataGridViewis your best bet for simple grid display. However, if you are needing nested (collapsible/expandable) display for child rows, etc. DataGridView will not do that.The
ListViewwould be good for something like the way Windows Explorer displays objects, properties, files, etc.