Maximize productivity with
30% off* for a limited time
using BOOSTDEV30.
Includes 3- and 5-packs.
*Some exclusions may apply.New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.Hi Liam,
Thank you for contacting Syncfusion support.
We are currently working on the reported query from our side. We will validate your query and provide you further details on December 2, 2019. We will appreciate your patience until then.
Regards,Gnana Priya N
private void ListView_SelectionChanged(object sender, Syncfusion.ListView.XForms.ItemSelectionChangedEventArgs e)
{
for (int i = 0; i < e.AddedItems.Count; i++)
{
CurrentItem = e.AddedItems[i] as MessageInfo;
CurrentItem.AutomationId = 10000; //You can customize the AutomationId of selected item.
if (previousItem != null)
{
previousItem = e.AddedItems[i] as MessageInfo;
prevId = previousItem.AutomationId;
}
CurrentItem = previousItem;
}
for (int i = 0; i < e.RemovedItems.Count; i++)
{
previousItem = e.RemovedItems[i] as MessageInfo;
}
}
|