vote up 3 vote down star
2

How can you program a dotNet Windows (or WPF) Application in order to let it going fullscreen on the secondary monitor?

flag

2 Answers

vote up 2 vote down

See this codeproject article.

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.

link|flag
vote up 1 vote down
private void Form1_Load(object sender, EventArgs e)
{
   this.FormBorderStyle = FormBorderStyle.None;
   this.Bounds = GetSecondaryScreen().Bounds;
}

private Screen GetSecondaryScreen()
{
   foreach (Screen screen in Screen.AllScreens)
   {
      if (screen != Screen.PrimaryScreen)
         return screen;
   }
   return Screen.PrimaryScreen;
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.