模拟键盘“Shift”的按钮按下按键

发布于 2024-10-19 07:26:18 字数 192 浏览 1 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自控 2024-10-26 07:26:18

不要手动触发 KeyPress 事件。相反,在此页面上,Telerik 表示允许多项选择,您必须将 SelectionMode 设置为 Extended:

this.radGridView.SelectionMode = System.Windows.Controls.SelectionMode.Extended;

因此,将其放入按钮单击中(我猜您会希望它在 Extended 和 Single 之间切换。 Multiple 的行为很尴尬,但这只是我的想法),然后您就可以开始了。

编辑:

切换按钮在其单击事件处理程序中将具有类似以下内容:

private void toggleButton1_Click(object sender, RoutedEventArgs e)
{
    this.radGridView.SelectionMode = toggleButton1.IsChecked ? SelectionMode.Extended : SelectionMode.Single;
}

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:

this.radGridView.SelectionMode = System.Windows.Controls.SelectionMode.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:

private void toggleButton1_Click(object sender, RoutedEventArgs e)
{
    this.radGridView.SelectionMode = toggleButton1.IsChecked ? SelectionMode.Extended : SelectionMode.Single;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文