熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

C# 讓TextBox只允許輸入數字

2022-06-13   來源: .NET編程 

  public class TextBoxEx : SystemWindowsFormsTextBox {

  protected override void OnKeyPress(SystemWindowsFormsKeyPressEventArgs e) {

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

  eHandled = true;

  }

  baseOnKeyPress(e);

  }

  }


From:http://tw.wingwit.com/Article/program/net/201311/12160.html
  • 上一篇文章:

  • 下一篇文章:
  • 推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.