Desktop Applications (Visual C++)- 微软的如何学好桌面本地应用程序给出的指南

来源:互联网 发布:四柱预测软件下载 编辑:程序博客网 时间:2024/05/16 08:02
转载链接: https://docs.microsoft.com/zh-cn/cpp/windows/desktop-applications-visual-cpp

Desktop Applications (Visual C++)

desktop application in C++ is a native application that can access the full set of Windows APIs and either runs in a window or in the system console. Desktop applications in C++ can run on Windows XP through Windows 10 (although Windows XP is no longer officially supported and there are many Windows APIs that have been introduced since then). A desktop application is distinct from a Universal Windows Platform (UWP) app, which can run on PCs running Windows 10, and also on XBox, Windows Phone, Surface Hub, and other devices. For more information about desktop vs. UWP applications, see Choose your technology.

Terminology

  • Win32 application is a Windows desktop application in C++ can make use of native Windows C APIs and/or COM APIs CRT and Standard Library APIs, and 3rd party libraries. A Win32 application that runs in a window requires the developer to work explicitly with Windows messages inside a Windows procedure function. Despite the name, a Win32 application can be compiled as a 32-bit (x86) or 64-bit (x64) binary. In the Visual Studio IDE, the terms x86 and Win32 are synonymous.

  • The Component Object Model (COM) is a specification that enables programs written in different languages to communicate with one another. Many Windows components are implemented as COM objects and follow standard COM rules for object creation, interface discovery and object destruction. Using COM objects from C++ desktop applications is relatively straightforward, but writing your own COM object is more advanced. The Active Template Library (ATL) provides macros and helper functions that simplify COM development.

  • An MFC application is a Windows desktop application that use the Microsoft Foundation Classesto create the user interface. An MFC application can also use COM components as well as CRT and Standard Library APIs. MFC provides a thin C++ object-oriented wrapper over the window message loop and Windows APIs. MFC is the default choice for applications—especially enterprise-type applications—that have lots of user interface controls or custom user controls. MFC provides convenient helper classes for window management, serialization, text manipulation, printing, and modern user interface elements such as the ribbon. To be effective with MFC you should be familiar with Win32.

  • A C++/CLI application or component uses extensions to C++ syntax (as allowed by the C++ Specification) to enable interaction between .NET and native C++code. A C++/CLI application can have parts that run natively and parts that run on the .NET Framework with access to the .NET Base Class Library. C++/CLI is the preferred option when you have native C++ code that needs to work with code written in C# or Visual Basic. It is primarily intended for use in .NET DLLs rather than in user interface code. For more information, see .NET Programming with C++/CLI (Visual C++).

    Any desktop application in C++ can use C Runtime (CRT) and Standard Library classes and functions, COM objects, and the public Windows functions, which collectively are known as the Windows API. For an introduction to Windows desktop applications in C++, see Learn to Program for Windows in C++.

In this section

TitleDescriptionConsole ApplicationsContains information about console apps. A Win32 (or Win64) console application has no window of its own and no message loop. It runs in the console window, and input and output are handled through the command line.Windows Desktop ApplicationsHow to create desktop applications that run in windows as opposed to the console.Resources for Creating a Game Using DirectX (C++)Links to content for creating games in C++.Walkthrough: Creating and Using a Static LibraryHow to create a .lib binary file.How to: Use the Windows 10 SDK in a Windows Desktop ApplicationContains steps for setting up your project to build using the Windows 10 SDK.TitleDescriptionWindows DevelopmentContains information about the Windows API and COM. (Some Windows APIs and third-party DLLs are implemented as COM objects.)Hilo: Developing C++ Applications for Windows 7Describes how to create a rich-client Windows desktop application that uses Windows Animation and Direct2D to create a carousel-based user interface. This tutorial has not been updated since Windows 7 but it still provides a throough introduction to Win32 programming.Visual C++Describes key features of Visual C++ in Visual Studio and links to the rest of the Visual C++ documentation.

See Also

Visual C++


原创粉丝点击