what is the difference between win32 application, windows form application and console application?

后端 未结 3 1559
无人及你
无人及你 2021-02-09 03:32

I want to know what is the difference between windows form application, win32application ana console, i know that both the windows form application and win32 application is gui

3条回答
  •  情深已故
    2021-02-09 03:49

    1. windows form applications are applications that use the graphical programming interface frameworks such as .NET, DELPHI, or MFC instead of directly calling the win32 API.
    2. On the other hand, win32 application usually deals directly with windows api to create applications from bottom up.
    3. And console applications don't have any graphical interface. Only command line window is used for data input and result output.

提交回复
热议问题