C#获取显示器屏幕数量 控制winform显示到哪一个屏幕

2021-05-06 06:28

阅读:674

标签:control   系统   for   device   winform   int   info   screens   控制   

获取当前系统连接的屏幕数量: 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));

C#获取显示器屏幕数量 控制winform显示到哪一个屏幕

标签:control   系统   for   device   winform   int   info   screens   控制   

原文地址:http://www.cnblogs.com/ProDoctor/p/7668276.html


评论


亲,登录后才可以留言!