将应用程序扩展到双显示器

发布于 2024-11-26 17:32:47 字数 162 浏览 3 评论 0原文

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

请让我知道该怎么做。

I have an application which runs on a single monitor. It has grids in that. Say for example if the application can hold 3 girds and there are 4 items to be placed, the 4th item should go to the second screen.
Algo: Check for grid size
if grid size is more than 3
open the remaining in the second(dual) screen.

Please let me know how to go about this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

柠檬 2024-12-03 17:32:47

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(); 
}

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(); 
}
素食主义者 2024-12-03 17:32:47

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

Inspect type System.Windows.Forms.Screen.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文