I have a ListView, and I'd like to only allow a single range to be selected. I need the equivalent of Java's SINGLE_SELECTION_INTERVAL ( ). For example:
If a ListView has 5 rows, #1,#2 could be selected, or #3,#4,#5, or just #3, but not #1,#3,#4.
Is there any way of adding this functionality in C# without getting heavily into rewriting the control?
If a ListView has 5 rows, #1,#2 could be selected, or #3,#4,#5, or just #3, but not #1,#3,#4.
Is there any way of adding this functionality in C# without getting heavily into rewriting the control?