当前位置:   article > 正文

自定义MFC控件——浮点数编辑框_uint nchar, uint nrepcnt, uint nflags

uint nchar, uint nrepcnt, uint nflags

编辑框的Number属性的不足

编辑框的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已置零的不予输入
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

结果如下

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/83013
推荐阅读
相关标签
  

闽ICP备14008679号