I've got 4 columns in my radListView1. I've added there 4 lines(4 items for each column).
But I can't get data from it. When I want to iterate through listview the property [text] is always the empty string.
Is there other way to retrieve values from ListView?
But I can't get data from it. When I want to iterate through listview the property [text] is always the empty string.
List<
string
> list =
new
List<
string
>();
foreach
(var item
in
radListView1.Items)
{
string
line = item.Text;
list.Add(line);
}
return
list;
Is there other way to retrieve values from ListView?