C#获取显示器屏幕数量 控制winform显示到哪一个屏幕
2021-05-29 03:03
标签:screens pos inf html 系统 control rom 连接 cto 获取当前系统连接的屏幕数量: Screen.AllScreens.Count(); C#获取显示器屏幕数量 控制winform显示到哪一个屏幕 标签:screens pos inf html 系统 control rom 连接 cto 原文地址:https://www.cnblogs.com/lonelyxmas/p/11106135.html
获取当前屏幕的名称:string CurrentScreenName = Screen.FromControl(this).DeviceName;
获取当前屏幕对象:Screen CurrentScreen = Screen.FromControl(this);
获取当前鼠标所在的屏幕:Screen CurrentScreen = Screen.FromPoint(new Point(Cursor.Position.X, Cursor.Position.Y));
上一篇:C# 常用扩展方法
下一篇:Swagger API文档
文章标题:C#获取显示器屏幕数量 控制winform显示到哪一个屏幕
文章链接:http://soscw.com/essay/88930.html