自定义MFC控件——浮点数编辑框

自定义MFC控件——浮点数编辑框

  • 编辑框的Number属性的不足
  • 自定义浮点数编辑框

编辑框的Number属性的不足

编辑框的Number属性会使得只能输入数字,而不能输入负数、浮点数。

自定义浮点数编辑框

首先创建一个MFC Class CnumberEdit类,基类为Cedit。
自定义MFC控件——浮点数编辑框_第1张图片
接着添加WM_CHAR消息。
自定义MFC控件——浮点数编辑框_第2张图片
处理程序为

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已置零的不予输入
}

结果如下
自定义MFC控件——浮点数编辑框_第3张图片

你可能感兴趣的:(MFC)