TxtNumerical.cs 435 B

12345678910111213141516171819202122
  1. 
  2. using System.Drawing;
  3. using System.Windows.Forms;
  4. namespace Dongke.WinForm.Controls
  5. {
  6. /// <summary>
  7. /// 数值输入文本框
  8. /// </summary>
  9. [ToolboxBitmap(typeof(TextBox))]
  10. public class TxtNumerical : TextBoxNumerical
  11. {
  12. #region 构造函数
  13. /// <summary>
  14. /// 数值输入文本框
  15. /// </summary>
  16. public TxtNumerical()
  17. {
  18. }
  19. #endregion
  20. }
  21. }