123456789101112131415161718192021222324252627 |
- /* ==============================================================================
- * 功能描述:正的整型文本框
- * 创 建 者:Garrett
- * 创建日期:2018/3/7 15:26:49
- * ==============================================================================*/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using WPG.MBIPropType;
- namespace SAGA.UserControls.WPF
- {
- /// <summary>
- /// UnitTextBox__PlusDouble
- /// </summary>
- public class TextBox_PlusInt : TextBox_InputLimit
- {
- public TextBox_PlusInt():base()
- {
- TextControl=new AccessPlusInteger();
- }
- }
- }
|