The program I’m making will need to show many statuses and websites information. I need to know the best way to go about doing this. I have had 0 luck with tableLayoutPanel.
I would like it to be similar to how these are on iOS, but can’t find anything similar for C#.
Any help or tips would be VERY appreciated.
You could use a TableLayoutPanel. The catch is that you will need to add the rows, and then the controls to the rows, on the fly. You will also have to reorder the rows manually if a row is deleted or moved.
You could also style a datagridview control to look like this, and the datagridview has already done most of the heavy lifting of the databinding for you.
Finally, you may just be able to get away with the ListView control, depending on the functionality you need. This should be the easiest approach