Pergunta

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?

Foi útil?

Solução

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 em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top