📜 ⬆️ ⬇️

Windows 8 Contracts and Extensions

If you are interested in developing applications in the metro-style under Windows 8, you probably already know that the life cycle of these applications is closer to the life cycle of applications on Windows Phone. This means that the application is not actually executed when the user does not see it. Thus, the question arises how applications can interact with each other and the system.

In Windows 8, for metro-style applications, contracts are used to interact with each other, and extensions are used to interact with the system.

There are a lot of various contracts and extensions. To write a post about what contracts and extensions are available to the developer, I was prompted by the article Windows 8. Contract “search” in detail , after which I decided to systematize my knowledge and collect in one place brief, literally several lines, “how to” by most contracts and extensions, with examples from the Windows SDK Samples .
')
So let's get started. Let's start with the contracts.

Contracts:


We turn to extensions.

Extensions:



If you want to try to implement any contract or extension right now, then to start developing applications for Windows 8, you need to install free development tools on Windows 8 .

Source: https://habr.com/ru/post/147434/


All Articles