2
I have a Listview that displays the data on the screen and has several rows and columns. For example:
Cl1 | Cl2 | Cl3 L1 aa | bb | cc L2 ab | bc | cd L3 ac | bd | ce
I wonder, if you have any c# native functions (like: lambda, LINQ, etc), to search and change values in Listview? For example: Search for ab (Cl1,L2), and change cd (Cl3, L2) to'test'.
But, as I will know, what is the corresponding line of Listview, which is on
elemento
? Because, in this variable you only took an instance ofminhaListView
.– Diego Moreno
@Diegomoreno I updated the answer. See if it fits you.
– Leonel Sanches da Silva
Was of great use.
– Diego Moreno