Worth visual studio 2015 desktop. I want to create a visual c ++ application. I create an empty C ++ project, then PROJECT -> create a new element, continue to look for windows forms, but it doesn't exist, there is no UI at all. How to create a form?
2 answers
There is no Windows Forms C ++ project in VS. If so itch to write GUI on the pros, then you can teach MFC (but this, IMHO, still the hemorrhoids). It is generally recommended for GUI to use either C # or Basic, then you will have both WinForm and WPF available. And part of the logic that you will write on the pros can be moved to a separate library.
WinForms
is forc++/cli
. But this can be said about the same way as already said about MFC :) - αλεχολυτ
And if you search, that is - http://mvblog.ru/archives/861 or here's the video: https://www.youtube.com/watch?v=a7XPMLbnpU0 . There are many other links ...
The fact is that, starting from VS 2012, in the list of projects that can be created, removed the item Windows Forms. However, the fact that such a project cannot be selected from the list does not mean that you cannot create it yourself.
WinForms
is.Net
, and under.Net
, managed languages are used, i.e. notc++
, butc++/cli
, but this is not the same thing. - αλεχολυτ- I know without you that you can do that. But when you create a new element, there is no UI point. I painted everything - dar
- Well, it seems as if the links were given out, how to set it all up - sitev_ru