c#

位置:IT落伍者 >> c# >> 浏览文章

C# 让TextBox只允许输入数字


发布日期:2022年02月27日
 
C# 让TextBox只允许输入数字

public class TextBoxEx : SystemWindowsFormsTextBox {

protected override void OnKeyPress(SystemWindowsFormsKeyPressEventArgs e) {

if (!charIsDigit(eKeyChar) && !eKeyCharEquals(\b) ) {

eHandled = true;

}

baseOnKeyPress(e);

}

}

上一篇:C# 中英文符号互转

下一篇:.NET注册IIS的另一种方法