模拟键盘“Shift”的按钮按下按键
我有一个 WPF 窗口,其中有一个 RadGridView 和一个按钮, 我的要求是,当您单击按钮并 在网格中选择一行,它的工作方式应该类似于 按下 Shift 键并单击 gridview 行。 (选择多行)。
所以,我需要在按钮中以编程方式按下 Shift 键 单击事件。
这可以做到吗?
感谢任何人都可以提供解决方案
I Have a WPF window that have a RadGridView and a Button,
My requirement is, when you click on the button and
select a row in the grid, it should work similar to
pressing on the shift key and clicking on a gridview row.
(To select multiple rows).
So, i need to press the shift key programatically in button
click event.
Can this be done?
Appreciate if anyone can provide a solution
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要手动触发 KeyPress 事件。相反,在此页面上,Telerik 表示允许多项选择,您必须将 SelectionMode 设置为 Extended:
因此,将其放入按钮单击中(我猜您会希望它在 Extended 和 Single 之间切换。 Multiple 的行为很尴尬,但这只是我的想法),然后您就可以开始了。
编辑:
切换按钮在其单击事件处理程序中将具有类似以下内容:
Do not fire a KeyPress event manually. Rather, on this page, Telerik indicates that to allow multiple selection, you must set the SelectionMode to Extended:
So, put this in your button click (I guess you'll want it to toggle between Extended and Single. Multiple's behaviour is awkward, but that's just me) and you're good to go.
Edit:
The toggle button will have something like this in its click event handler: