gpt4 book ai didi

.net - 纯数字文本框作为 Visual Studio 工具箱中的控件

转载 作者:行者123 更新时间:2023-12-01 11:59:16 26 4
gpt4 key购买 nike

我想制作一个纯数字文本框。然后我想将其添加到 Visual Studio 2008 中的控件工具箱

我已经构建了只允许数字的函数。

如何让它在工具箱中可用?

最佳答案

这是创建数字 TextBox 的方法:

public class NumericTextBox : TextBox
{
protected override void OnKeyPress(KeyPressEventArgs e)
{
if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar))
{
e.Handled = true;
}
base.OnKeyPress(e);
}
}

关于.net - 纯数字文本框作为 Visual Studio 工具箱中的控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3170744/

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