gpt4 book ai didi

c# - 停止箭头键滚动 TabControl C# Winform 上的选项卡

转载 作者:太空宇宙 更新时间:2023-11-03 17:04:47 24 4
gpt4 key购买 nike

我需要阻止箭头键滚动浏览我的各个选项卡。任何人都知道这样做的方法吗?

最佳答案

我用下面的代码解决了这个问题

string tempstring = e.KeyValue.ToString();
if (tempstring == "37" || tempstring == "38" || tempstring == "39" || tempstring == "40")
{
e.Handled = true;
}

我将它放在 tabControl1_KeyDown(object sender, KeyEventArgs e) 方法中。

关于c# - 停止箭头键滚动 TabControl C# Winform 上的选项卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/358025/

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