I have some data that I am currently implementing the presentation of in a Windows.Forms.DataGridView
. I am questioning if DataGridView is the best component to use and if not, what component is.
The image below shows how the data is to be presented. The first 2 columns are static. The 3rd column is data entered by the user. The reason I think that DataGridView may not be appropriate is that there a 2 kinds of rows. The first kind has a Group and nothing in the Item and Grower columns. The second kind has nothing in Group, always has an Item, and may or may not have a Grower.
Is DataGridView the best component for this? If so, how would a BindingSource
be defined?