Hi,
I have created a custom control inside a ArcGIS dock pane. In the custom control I have a list view which displays some data. On selecting any list view item I have to select the ArcGIS table whose data is actually present in the list view. But on selecting the table data, focus from the list view item is getting lost.
Below is code I am using to select the table data which is making the list view item lost the focus:
myTable.Select(new QueryFilter { SubFields = "*", WhereClause = $"OBJECTID IN ({ids})" });
Any help?