0

我有一个在单个监视器上运行的应用程序。它有网格。例如,如果应用程序可以容纳 3 个网格并且要放置 4 个项目,则第 4 个项目应该转到第二个屏幕。算法:如果网格大小大于 3,则检查网格大小,在第二个(双)屏幕中打开剩余的。

请让我知道该怎么做。

4

2 回答 2

3

http://msdn.microsoft.com/de-de/library/system.windows.forms.screen.allscreens.aspx

void showOnMonitor(int showOnMonitor) 
{ 
  Screen[] sc; 
  sc = Screen.AllScreens; 
  //get all the screen width and heights 
  Form2 f = new Form2(); 
  f.FormBorderStyle = FormBorderStyle.None; 
  f.Left = sc[showOnMonitor].Bounds.Width; 
  f.Top = sc[showOnMonitor].Bounds.Height; 
  f.StartPosition = FormStartPosition.Manual; 
  f.Show(); 
}
于 2011-07-27T13:33:41.363 回答
0

检查类型 System.Windows.Forms.Screen。

于 2011-07-27T13:30:31.620 回答