码迷,mamicode.com
首页 > 其他好文 > 详细

c#抓取当前电脑显示分辨率

时间:2014-09-24 19:42:57      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:ar   strong   for   sp   on   c   ef   r   bs   

 using System.Windows.Forms;
            

获取屏幕分辨率
            int SH = Screen.PrimaryScreen.Bounds.Height;
            int SW = Screen.PrimaryScreen.Bounds.Width;  

           

获取窗口居中Top和Left
            int thisH=100;
            int thisW=200;
            int SH = (Screen.PrimaryScreen.Bounds.Height - 30 - thisH) / 2;
            int SW = (Screen.PrimaryScreen.Bounds.Width - 10 - thisW) / 2;

c#抓取当前电脑显示分辨率

标签:ar   strong   for   sp   on   c   ef   r   bs   

原文地址:http://www.cnblogs.com/skyay/p/3991041.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!