wpf 中的多选列表框
我如何在单击列表框中选择五个项目? 如果我单击任何项目,我只想从所选索引中+2 和-2。所以我的单击需要在列表视图中选择五个项目。 我正在使用 C#(WPF)。
how i can select five items in the single click on the list box??
if i click any item, i just want to +2 and -2 from the selected index. so my single click need to select five items in the listview.
Am using C#(WPF).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定你到底想做什么,但尝试一下。 =)
看一下ListBox 的Click 事件。您可以在那里做任何事情,包括选择您选择的五个项目。您可以这样做(未经测试,但给您一个想法):
另一件事是将 SelectionMode 设置为 Multiple 或 Extended。这会导致您正在寻找的行为吗?
I am not sure what you want to do exactly, but trying. =)
Have a look at the Click event of the ListBox. You can do anything in there, including selecting five items of your choice. You can do it like this (untested, but gives you an idea):
Another thing would be setting the SelectionMode to Multiple or Extended. Does this result in the behaviour you are looking for?
查看selectionchanged事件,并获取所选项目的索引并将其设置为+2和-2
我尝试了这样的方法,它有效:
此代码的一个问题是您仍然可以使用 ctrl 来选择另一个项目,这样它会使选定的项目计数增加
have a look at selectionchanged event, and get the index of the selected item and make it +2 and -2
i tried it like this and it works:
one problem with this code is you can still use ctrl to select another item so it makes the selecteditems count increased