I'm attempting to make a screensaver with a Windows Form App. It's almost working correctly, but for whatever reason, it will not show on all of the screens, just one of them.
foreach (Screen screen in Screen.AllScreens)
{
Screensave screensaver = new Screensave(screen.Bounds);
screensaver.Show();
}
Now this creates the correct amount of instances of the program. But all of them are on only one of my screens, and I'm not sure why.