UWP/store apps use no multiinstance, but use multi-view style. (Edge is an exception, maybe...)
In multi-view, the instance is same but each windows' 'Views' are running on each threads.
Design guideline:
Guidelines for multiple windows
Sample: MultipleViews Sample
[Added Feb 2018] From Windows 10 RS4 (1803), we can use the 'true' multi instance with UWP App :) Applicable device families are Desktop and IoT. This is a sort of 'opt-in' option - you need to declare it on your application manifest to use it. The detail and samples available on the following Microsoft Docs site.
Create a multi-instance Universal Windows App
[Added June 2017] As of build2017 presentations, it seems that Microsoft have a plan to extend their UWP App model to allow the real "Multi Instance" by their future Update of Windows. But the details are not available yet.
[Added 2015] I've uploaded the sample bogusCalc to my OneDrive.
This is based on VS2015 'blank' template and ViewLifetimeControl.cs
, picked from multiple views sample. Each time you start the bogusCalc
from the start menu, Application::OnLaunched is invoked.
