重复How do I find what screen the application is running on in C#
在C#winform中,如何确定在三台显示器设置中显示应用程序的显示器。
答案 0 :(得分:6)
System.Windows.Forms.Screen.FromControl()
检索包含指定控件最大部分的显示的屏幕。
此属性也可能有用:
System.Windows.Forms.Screen.AllScreens
获取系统上所有显示的数组。