How can you program a dotNet Windows (or WPF) Application in order to let it going fullscreen on the secondary monitor?
|
2
|
|
|
|
|
|
The code in there will work, but default to your primary monitor. To change this, you'll need to replace the calls to GetSystemMetrics will calls to GetMonitorInfo. Using GetMonitorInfo, you can get the appropriate RECT to pass to SetWindowPos. GetMonitorInfo allows you to get the RECT for any monitor. There is an MSDN Article on Position Apps in Multi-Monitor Setups that might help explain things a bit better. |
||
|
|
|
|
|
||
|
|
