gpt4 book ai didi

c# - 如何在只接受字符的文本框中输入空格键?

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

if (!Char.IsControl(e.KeyChar) && !char.IsLetter(e.KeyChar))
{
e.Handled = true;
base.OnKeyPress(e);

(例如 Jonh space Jambo)但它只适用于 johnjambo

最佳答案

只需再添加一个条件即可。

&& !char.IsWhiteSpace(e.KeyChar)

你的整体代码应该是这样的

if (!char.IsControl(e.KeyChar) && !char.IsLetter(e.KeyChar) && !char.IsWhiteSpace(e.KeyChar))
{
e.Handled = true;
base.OnKeyPress(e);
}

关于c# - 如何在只接受字符的文本框中输入空格键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28804206/

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