gpt4 book ai didi

.net - 有没有办法在 C#.NET 中使用 TabIndex 移动通用 KeyDown 处理程序和焦点?

转载 作者:行者123 更新时间:2023-12-04 06:59:20 30 4
gpt4 key购买 nike

我想为表单上的所有可用控件运行一个通用的 KeyDown 偶数处理程序。
我有什么办法可以做到吗?

更清楚地说,我的目的是在按下 Enter 键时检测它,并将焦点从当前控件移动到具有下一个 TabIndex 的控件。

我怎样才能做到这一点?

最佳答案

您必须避免妨碍正常使用 Enter 键。这应该很接近:

protected override bool ProcessCmdKey(ref Message msg, Keys keyData) {
if (keyData == Keys.Enter && this.AcceptButton == null && this.ActiveControl != null) {
TextBoxBase box = this.ActiveControl as TextBoxBase;
if (box == null || !box.Multiline) {
// Not a dialog, not a multi-line textbox; we can use Enter for tabbing
this.SelectNextControl(this.ActiveControl, true, true, true, true);
return true;
}
}
return base.ProcessCmdKey(ref msg, keyData);
}

关于.net - 有没有办法在 C#.NET 中使用 TabIndex 移动通用 KeyDown 处理程序和焦点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2128562/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com