Pregunta

I want to write a C++ application using Visual Studio, without using MFC (or Qt). I want to design the user interface (dialog boxes, menu bars, etc.) using drag-and-drop (similar to the Winforms designer in C#).

How can I do this?

¿Fue útil?

Solución

WindowsForms is part of the .NET Framework, so you can't use it directly with standard C++. You could use C++/CLI a version of the C++ programming language developed by Microsoft to work with the .NET Framework.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top