查找 Ultralistview 的选定项目
Infragistics UltraListview 中 ListView 的 SelectedIndices 属性的替代方案是什么?
仅供参考:SelectedIndices 属性获取列表视图中所选项目的索引。
有关详细信息,请参阅:查找列表视图的选定项目
请回复
谢谢
What is alternative to ListView's SelectedIndices property in Infragistics UltraListview?
FYI: SelectedIndices Property gets index of Selected Item in List View.
For more info please refer: Finding the selected item of list view
Please reply
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UltraListView.SelectedItems
返回具有Selected = True
的UltraListViewItem
对象的集合。要模拟 SelectedIndicies,您可以调用以下 LINQ 代码 (VB):
UltraListView.SelectedItems
returns a collection ofUltraListViewItem
objects withSelected = True
.To emulate the SelectedIndicies, you can call this LINQ code (VB):