I need only one ListView item selectable. I can not find poperty/method to disable multiple selection in .NET Compact Framework 3.5. And I can not find ListView2 in OpenNetCF.
I need only one ListView item selectable. I can not find poperty/method to disable
Share
You could use a ListBox Control. It can be made to look and function like the ListView Control.
If you want (or need) to stick with the ListView Control, you could always select the first item in the SelectionIndexChanged event and discard the rest.