15

I want to create an application that has multiple touch surfaces, preferably using the Metro/WinRT APIs. However, much of what I've read indicates that Metro is confined to a single (primary?) monitor. Is that true?

Kate Gregory
  • 18,808
  • 8
  • 56
  • 85
Andy S
  • 8,641
  • 6
  • 36
  • 40

3 Answers3

16

Metro style applications are full screen, single screen only. There is no way to have a dual-screen application.

Steve Rowe
  • 19,411
  • 9
  • 51
  • 82
5

I have tested Win8 with multiple monitors. The metro interface is only ever available on a single monitor, with the othe always displaying the 'traditional' desktop. You can switch which monitor displays the metro UI, but cannot render it on both.

ColinE
  • 68,894
  • 15
  • 164
  • 232
3

Microsoft heard this request and added multi-monitor support to Windows 8.1. See the Windows.UI.ViewManagement namespace, specifically the ProjectionManager and ApplicationViewSwitcher classes. There's also a Projection sample for this.