How to add a form for a C ++ project to Visual Studio Community 2015? I create the empty project, in adding of an element there is no section UI
- 3There are no forms in C ++. What you mean is C ++ / CLI, a terrible language that for some reason is used by students to write a UI for the lab. My advice: if you need a UI, write to C # / WPF or WinForms. If you really need C ++ / CLI (this is not C ++), create a project like WinForms under C ++ / CLI. - VladD
- onestackoverflow.com/a/32404584/276994 - VladD
- Future for Borland C ++ Builder - tCode
- 3@tCode God forbid! - αλεχολυτ
- 2@ Arina is an explosive mixture of .NET and C ++, which is used for very specific things at the interface of the native world and .NET. As already mentioned, this is not C ++. If you don't care, look at Qt with the Visual Studio plugin. - free_ze
|
1 answer
By itself, C ++ does not know how to box out of the box.
This is how windows can be made using the Windows API
So with the Qt framework.
Here so - with the help of the wxWidgets library
Like this - using GTKmm
|