赞
踩
编辑框的Number属性会使得只能输入数字,而不能输入负数、浮点数。
首先创建一个MFC Class CnumberEdit类,基类为Cedit。
接着添加WM_CHAR消息。
处理程序为
void CNumberEdit::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags) { // TODO: Add your message handler code here and/or call default CString str; GetWindowText(str); if(str.GetLength() != 0 && nChar == '-') nChar = 0; //如果键入负号前已有其它字符,则不输入 else if(nChar == '.') { if(str.GetLength() == 0) nChar = 0; //小数点不能放在第一位 else if(str == "-") nChar = 0; //小数点不能放在负号后一位 else { bool hasfloat = false; for(int i = 0;i < str.GetLength();i++) if(str.GetBuffer(0)[i] == '.') hasfloat = true; if(hasfloat == true) nChar = 0; //小数点不能有多个 } } else if((nChar < '0' && nChar > '9') && nChar != 8) nChar = 0; //除负号、小数点、数字、退格键的皆不输入 if(nChar != 0) CEdit::OnChar(nChar, nRepCnt, nFlags); //对nChar已置零的不予输入 }
结果如下
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。