Can a ListView fill in values not in a column, but in rows?
The situation is as follows: I need to fill in the values as shown in the figure:
For example, the initial condition is 0.01 and it ends on the boundary 1.1 and here are my i1, i2, i3, i4 and you need to fill in the values in the string (from the initial to the final).
I already know how to add columns through a loop:
int kolst =10; listView1->Columns->Add("Начальные условия", -2, HorizontalAlignment::Right); for(int i = 1;i<kolst+1;i++) { listView1->Columns->Add("i + " + i, -2, HorizontalAlignment::Left);//Нумерация столбцов } listView1->Columns->Add("Граничные условия", -2, HorizontalAlignment::Left); But how to fill in the values in rows is not clear. I filled the initial and boundary conditions and their expressions as it should, it remains only to fill the expressions from the array into a row, and not into a column (i1, i2, i3, i4). That is, under each i1, i2, I should have an array value. How can this be done?
What I tried to do: I substituted the Items.Add,Columns.Add in the loop, but the line was not displayed.

ListViewin c ++. - αλεχολυτc++, butc++/cli. - αλεχολυτ