gpt4 book ai didi

c# - 覆盖 ProcessCmdKey C#

转载 作者:太空狗 更新时间:2023-10-30 00:15:59 25 4
gpt4 key购买 nike

我有覆盖 TextBox ProcessCmdKey 方法的代码:

protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{
switch (keyData)
{
case: //something to do etc etc.
}
return true;
}

但是当我使用上面的代码时,我无法在TextBox中写入。有解决办法吗?

最佳答案

一旦你处理完所有事情,将它传递给基本控件:

protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{
switch (keyData)
{
case /* whatever */:
// ...
default:
return base.ProcessCmdKey(ref msg, keyData);
}

return true;
}

关于c# - 覆盖 ProcessCmdKey C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9882310/

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