Hi!
I can't find any method to get the indexes of the checked items.
I need to know the index number of each element that is checked in the control.
For example in the above picture i need to get numbers 1,3,4
The other thing i tried is to manage it on the ItemChecked event like this:
private void lstAppNamePTT_ItemChecked(object sender, Syncfusion.WinForms.ListView.Events.ItemCheckedEventArgs e)
{
if(e.NewState == CheckState.Checked) {
AppChecked.Add(e.ItemIndex);
} else
{
AppChecked.Remove(e.ItemIndex);
}
}
Bit that doesn't give me a way to do it outside the event.
Any suggestions?