문제

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