What does the visual studio GUI use by default?

As far as I know, visual studio is a GUI code generator, among other things, you drag a button and put it in a window, the code is written for you behind the scenes.

my question is:

what does visual studio use by default ??? I know that it integrates with some GUI tools like Fox, GTK and QT.

+5
source share
2 answers

Strictly speaking, Visual Studio does not integrate with other GUI tools; tools can integrate with VS. For example, Qt provides integration with Visual Studio, so you can develop Qt applications from the VS IDE.

Visual Studio :

  • Raw Win32 (, , , , )
  • MFC ++ ( )
  • WTL ++ ( GUI-, AFAIK, )
  • Windows Forms .Net
  • WPF .Net

, . Windows Forms, , , WPF (, , ).

+6

Visual Studio 2010 Windows Presentation Foundation . WPF, Windows Forms MFC (++) .

+4

All Articles