获取当前系统连接的屏幕数量: Screen.AllScreens.Count();
获取当前屏幕的名称:string CurrentScreenName = Screen.FromControl(this).DeviceName;
获取当前屏幕对象:Screen CurrentScreen = Screen.FromControl(this);
获取当前鼠标所在的屏幕:Screen CurrentScreen = Screen.FromPoint(new Point(Cursor.Position.X, Cursor.Position.Y));

相关文章:

  • 2021-10-04
  • 2022-12-23
  • 2021-10-05
  • 2021-07-17
  • 2022-12-23
  • 2022-12-23
  • 2022-03-14
  • 2021-11-17
猜你喜欢
  • 2021-10-22
  • 2022-12-23
  • 2021-08-05
  • 2021-10-28
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案