“DDX_Control” : 不能将参数 3 从“int”转换为“CWnd &”

如果要使用DDX_Control,则m_ncount应为CEdit类型
如果要使用int m_nCount; 请使用DDX_Text(pDX, IDC_COUNT, m_nCount);
而不能使用 DDX_Control(pDX, IDC_COUNT, m_nCount);

你可能感兴趣的:(“DDX_Control” : 不能将参数 3 从“int”转换为“CWnd &”)