位置:IT落伍者 >> c# >> 浏览文章
public class TextBoxEx : SystemWindowsFormsTextBox {
protected override void OnKeyPress(SystemWindowsFormsKeyPressEventArgs e) {
if (!charIsDigit(eKeyChar) && !eKeyCharEquals(\b) ) {
eHandled = true;
}
baseOnKeyPress(e);
上一篇:C# 中英文符号互转
下一篇:.NET注册IIS的另一种方法