Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不能在基于 MFC 对话框的应用程序中使用 CSplitbutton,它会给出声明错误。我包括 afxwin.h 但给出了同样的问题。
请帮助我陷入僵局。
请在您的项目中启用 Unicode 设置。 CSplitbutton 具有 unicode 依赖性。 如下所示
#if (_WIN32_WINNT >= 0x600) && defined(UNICODE) class CSplitButton : public CButton
根据上面的代码,您的版本需要 vista + 并启用 unicode 设置。