TextBox_PlusInt.cs 713 B

123456789101112131415161718192021222324252627
  1. /* ==============================================================================
  2. * 功能描述:正的整型文本框
  3. * 创 建 者:Garrett
  4. * 创建日期:2018/3/7 15:26:49
  5. * ==============================================================================*/
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. using System.Windows;
  12. using WPG.MBIPropType;
  13. namespace SAGA.UserControls.WPF
  14. {
  15. /// <summary>
  16. /// UnitTextBox__PlusDouble
  17. /// </summary>
  18. public class TextBox_PlusInt : TextBox_InputLimit
  19. {
  20. public TextBox_PlusInt():base()
  21. {
  22. TextControl=new AccessPlusInteger();
  23. }
  24. }
  25. }