当前位置:   article > 正文

MFC实现Edit输入限制(只允许输入数字,小数点)_mfc中,怎么设置edit只能输入数字和小数点

mfc中,怎么设置edit只能输入数字和小数点

其实只要继承CEdit类,并对WM_CHAR消息进行处理就可以了。很简单的,只是我们之前不会,哈哈
1) 项目中添加一个类CEditEx, 继承CEdit
2) 将MFC中的控件变量的类别设置为CEditEx,并为对它进行响应
3)调用WM_CHAR消息,编写相应的响应函数。相当代码如下
CEditEx.h

#pragma once

// CEditEx

class CEditEx : public CEdit
{
	DECLARE_DYNAMIC(CEditEx)

public:
	CEditEx();
	virtual ~CEditEx();

protected:
	DECLARE_MESSAGE_MAP()
public:
	afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
	afx_msg void OnKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags);
};

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

CEditEx.cpp

// EditEx.cpp : 实现文件
//

#include "stdafx.h"
#include "EditEx.h"

// CEditEx

IMPLEMENT_DYNAMIC(CEditEx, CEdit)

CEditEx::CEditEx()
{
}

CEditEx::~CEditEx()
{
}

BEGIN_MESSAGE_MAP(CEditEx, CEdit)
	ON_WM_CHAR()
	ON_WM_KEYUP()
END_MESSAGE_MAP()

// CEditEx 消息处理程序
void CEditEx::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags)
{
	// TODO:  在此添加消息处理程序代码和/或调用默认值

	// 处理小数点
	if (nChar == '.'){
		CString str;
		GetWindowText(str);

		// 限制第一位为小数
		if (str.GetLength() == 0){
			// 第一位输入小数点
			MessageBox(_T("第一位不可以是小数点"));
			return;
		}
		// 限制只允许有一个小数点
		if (str.Find('.') == -1){
			CEdit::OnChar(nChar, nRepCnt, nFlags);
		}else{
			CString str;
			GetWindowText(str);
			if (str[0] == '.') {
				SetWindowText(str.Mid(1, str.GetLength()));
				MessageBox(_T("第一位不可以是小数点"));
			}
			// 小数点出现第二次
			MessageBox(_T("小数点只能输入一次"));
		}
	}
	// 数理数字和退格键
	else if ((nChar >= '0' && nChar <= '9') || nChar == 0x08)
	{
		CEdit::OnChar(nChar, nRepCnt, nFlags);
	}else{
		// 出现非数字键,退格键
		MessageBox(_T("只能输入数字,退格键"));
	}
}

// 修复先输入数字之后,可以在第一位输入小数点
void CEditEx::OnKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags)
{
	// TODO: 在此添加消息处理程序代码和/或调用默认值
	if (nChar == VK_DECIMAL || nChar == VK_OEM_PERIOD) {
		CString str;
		GetWindowText(str);
		if (str[0] == '.') {
			SetWindowText(str.Mid(1, str.GetLength()));
			MessageBox(_T("第一位不可以是小数点"));
		}
	}
	CEdit::OnKeyUp(nChar, nRepCnt, nFlags);
	
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78

配套资源

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

闽ICP备14008679号