You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
background triggers
About this tag
Background triggers in Windows 10 enable developers to run code in the background without creating a separate background task. The Windows 10 Anniversary Update introduced a simplified method for background activity using the Single Process Model, allowing code to run directly inside the foreground application. This option reduces the complexity of implementing background work compared to the multiple process model, which required more code. Developers can now choose between running background tasks as a separate process or within the foreground app. Topics covered include developer options, background activity, and the Single Process Model for Windows 10 applications.
Interested in running your application in the background? A new developer option available in the Windows 10 Anniversary Update just made background activity a whole lot easier. Your feedback was clear on the multiple process model: while doing background work in a separate process was more...