Using Visual C++ for C++ instead of C++/CLI

人走茶凉 提交于 2019-12-02 06:02:48

Visual C++ is perfectly happy to not use C++/CLI syntax, in fact it works even better without it.

Just set "Use of .NET Framework (/clr)" setting in your project options to "No". Or use the "Win32 Application" wizard when creating your project to begin with.

The "native" version of the Forms Designer is called the Dialog Editor and it works much the same way -- you can select textboxes and buttons and things from a palette and drag where you want them in your window.

The best RAD C++ tool, which also happens to accept unmanaged C++ is "CodeGear C++ Builder"

Cesar A. Rivas

How about Qt Creator - IDE for Qt? http://www.qt.io/ide/

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!