在C#winform中,如何识别应用程序显示在哪个监视器上

时间:2009-04-04 11:05:50

标签: c#

重复How do I find what screen the application is running on in C#

在C#winform中,如何确定在三台显示​​器设置中显示应用程序的显示器。

1 个答案:

答案 0 :(得分:6)

System.Windows.Forms.Screen.FromControl()

检索包含指定控件最大部分的显示的屏幕。

此属性也可能有用:

System.Windows.Forms.Screen.AllScreens

获取系统上所有显示的数组。