Вопрос

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?

Это было полезно?

Решение

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.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top